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