blob: 326e684f0767a77c92761a5b025c5831474c5286 [file] [log] [blame]
package org.testng.internal.conflistener;
import org.testng.annotations.AfterTest;
import org.testng.annotations.Test;
/**
* This class/interface
*/
public class FailingAfterTest {
@AfterTest(alwaysRun=true)
public void afterTest() {
throw new RuntimeException("Test exception");
}
@AfterTest
public void skippedAfterTest() {
}
@Test
public void dummytest() {
}
}