blob: d96aa47ca80c6acc9dbac47d0e1b941bc65f1a99 [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() {
}
}