blob: baf2771623e8f7b09afbad3e6e97ffd32e5f3247 [file] [log] [blame]
package test.conffailure;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class ClassWithFailedBeforeTestClass {
@BeforeClass
public void setUpShouldFail() {
throw new RuntimeException("Failing in setUp");
}
// Adding this method or @Configuration will never be invoked
@Test
public void dummy() {
}
}