java-tutorials/testng/src/test/java/com/baeldung/TimeOutIntegrationTest.java

12 lines
230 B
Java
Raw Normal View History

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