blob: 238327d5c54fb13b358cceebff9689c7dff2d750 [file] [log] [blame]
package org.testng.internal.conflistener;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.Test;
/**
* This class/interface
*/
public class FailingAfterSuite {
@AfterSuite(alwaysRun=true)
public void afterSuite() {
throw new RuntimeException("Test exception");
}
@Test
public void dummytest() {
}
}