// 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.AfterAll; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; @Expect(failed = 1, status = 5) public class FailingTestAndBothAftersTest { @AfterAll static void fail() { throw new RuntimeException(); } @AfterEach void moreFail() { throw new RuntimeException(); } @Test void test() { Assertions.fail(); } }