aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/test/java/com/yahoo/vespa/test/samples/InconclusiveTest.java
blob: 96f0accfe5b3f04bf0d0d56bfcf165b45d53416b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.test.samples;

import ai.vespa.hosted.cd.InconclusiveTestException;
import ai.vespa.hosted.cd.ProductionTest;
import com.yahoo.vespa.testrunner.Expect;
import org.junit.jupiter.api.Test;

@ProductionTest
@Expect(inconclusive = 1, status = 3)
public class InconclusiveTest {

    @Test
    void test() { throw new InconclusiveTestException("soon"); }

}