blob: 29e9eb808b92a7747265bcc9d1fdca10a15c3058 [file] [log] [blame]
package test.conffailure;
import org.testng.annotations.BeforeSuite;
public class ClassWithFailedBeforeSuite {
@BeforeSuite
public void setUpShouldFail() {
throw new RuntimeException("Failing in setUp");
}
}