blob: c876c2421814b1c6821f14d90e313512fa6ba147 [file] [log] [blame]
package test.listeners;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class ConfigurationListenerSkipSampleTest {
@BeforeMethod
public void bmShouldFail() {
throw new RuntimeException();
}
@BeforeMethod(dependsOnMethods = "bmShouldFail")
public void bm() {
}
@Test
public void f() {
}
}