aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/test/java/com/yahoo/vespa/test/samples/NotInconclusiveTest.java
blob: fea1e82726048d36a3e8ea9beba8ca5faa005def (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yahoo.vespa.test.samples;

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

@Expect(error = 1, status = 5)
public class NotInconclusiveTest {

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

}