2017-06-12 22:12:54 +02:00
|
|
|
package org.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
|
2017-10-29 16:05:26 +01:00
|
|
|
public class SpringBootBootstrapApplicationIntegrationTest {
|
2017-06-12 22:12:54 +02:00
|
|
|
|
|
|
|
@Test
|
|
|
|
public void contextLoads() {
|
|
|
|
}
|
|
|
|
}
|