BAEL-701 Introduction to TestNG

This commit is contained in:
dhruba619
2017-03-01 16:47:07 +05:30
parent 99c8ee5228
commit d1f0b2e554
16 changed files with 597 additions and 454 deletions

View File

@@ -1,11 +1,11 @@
package baeldung.com;
import org.testng.annotations.Test;
public class TimeOutTest {
@Test(timeOut = 1000, enabled = false)
public void givenExecution_takeMoreTime_thenFail() {
while (true) ;
}
}
package baeldung.com;
import org.testng.annotations.Test;
public class TimeOutTest {
@Test(timeOut = 1000, enabled = false)
public void givenExecution_takeMoreTime_thenFail() {
while (true) ;
}
}