blob: f6d4e3ebd6fe0250d205b8f894850053ffb224ba [file] [log] [blame]
package test.order;
public class TestLevelConfiguration {
/**
* @testng.configuration beforeTest="true"
*/
public void beforeTest() {
System.out.println("TLC.beforeTest");
throw new RuntimeException("should stop everythhing");
}
/**
* @testng.configuration afterTest="true" alwaysRun="true"
*/
public void afterTest() {
System.out.println("TLC.afterTest");
}
}