blob: 8a096e6d29a6b28492c783b200732a4990f923af [file] [log] [blame]
package test.listeners;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class ConfigurationListenerFailSampleTest {
@BeforeMethod
public void bmShouldFail() {
throw new RuntimeException();
}
@Test
public void f() {
}
}