aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/test/java/com/yahoo/vespa/test/samples/FailingAfterEachTest.java
blob: a55d3ffad4a0cebae059fcfbc13f0586ae23bff3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 com.yahoo.vespa.testrunner.Expect;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;

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

    @AfterEach
    void fail() { throw new RuntimeException(); }

    @Test
    void test() { }

}