java-tutorials/spring-5/src/test/java/com/baeldung/Example1IntegrationTest.java
geroza 8eb95df40b migrated the following modules:
* azure
* jib
* spring-5
* spring-5-data-reactive
2018-12-02 12:46:28 -02:00

30 lines
616 B
Java

package com.baeldung;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class Example1IntegrationTest {
@Test
public void test1a() {
block(3000);
}
@Test
public void test1b() {
block(3000);
}
public static void block(long ms) {
try {
Thread.sleep(ms);
} catch (InterruptedException e) {
System.out.println("Thread interrupted");
}
}
}