2018-12-09 20:36:56 +02:00
|
|
|
package com.baeldung;
|
2017-06-12 22:12:54 +02:00
|
|
|
|
|
|
|
|
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
|
2018-09-09 16:10:21 -04:00
|
|
|
public class SpringContextIntegrationTest {
|
2017-06-12 22:12:54 +02:00
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void contextLoads() {
|
|
|
|
|
}
|
|
|
|
|
}
|