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

import com.yahoo.vespa.testrunner.Expect;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

@Expect(failed = 1, status = 4)
public class FailingAssertionTest {

    @Test
    void fail() { Assertions.fail(); }

}