2019-01-17 17:44:49 -02:00
|
|
|
package com.baeldung.web;
|
2019-01-09 00:30:54 +05:30
|
|
|
|
|
|
|
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
|
2019-01-09 00:12:40 +02:00
|
|
|
public class SpringContextIntegrationTest {
|
2019-01-09 00:30:54 +05:30
|
|
|
|
|
|
|
@Test
|
|
|
|
public void contextLoads() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|