12345678910111213141516171819 |
- package camel;
- import org.junit.Test;
- import org.junit.runner.RunWith;
- import org.springframework.boot.test.context.SpringBootTest;
- import org.springframework.test.context.junit4.SpringRunner;
- /**
- * Empty test to test that Spring Boot can startup
- */
- @RunWith(SpringRunner.class)
- @SpringBootTest
- public class SpringbootApplicationTests {
- @Test
- public void contextLoads() {
- }
- }
|