blob: 875c65726418a0bd95062e74d2a83c6db3808ce8 [file] [log] [blame]
package test.configurationfailurepolicy;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class ExtendsClassWithFailedBeforeMethod extends ClassWithFailedBeforeMethod {
@BeforeMethod
public void setupExtension() {
}
@Test
public void test2() {
}
}