blob: 45fa3f06054e0d3e3cfa93633d9003da16939dee [file] [log] [blame]
package test.configurationfailurepolicy;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class ClassWithFailedBeforeClassMethod {
@BeforeClass
public void setupClassFails() {
throw new RuntimeException( "setup class fail" );
}
@BeforeMethod
public void setupMethod() {
}
@Test
public void test1() {
}
}