* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full * group persistence modules * group testing modules * try fix conflict
12 lines
230 B
Java
12 lines
230 B
Java
package com.baeldung;
|
|
|
|
import org.testng.annotations.Test;
|
|
|
|
public class TimeOutIntegrationTest {
|
|
|
|
@Test(timeOut = 1000, enabled = false)
|
|
public void givenExecution_takeMoreTime_thenFail() {
|
|
while (true) ;
|
|
}
|
|
}
|