java-tutorials/spring-boot/src/test/java/com/baeldung/webjar/WebjarsdemoApplicationIntegrationTest.java

19 lines
508 B
Java
Raw Normal View History

package com.baeldung.webjar;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = WebjarsdemoApplication.class)
@WebAppConfiguration
2016-10-20 13:44:16 +02:00
public class WebjarsdemoApplicationIntegrationTest {
2016-10-12 08:02:05 +03:00
@Test
public void contextLoads() {
}
}