SpringbootApplicationTests.java 394 B

12345678910111213141516171819
  1. package camel;
  2. import org.junit.Test;
  3. import org.junit.runner.RunWith;
  4. import org.springframework.boot.test.context.SpringBootTest;
  5. import org.springframework.test.context.junit4.SpringRunner;
  6. /**
  7. * Empty test to test that Spring Boot can startup
  8. */
  9. @RunWith(SpringRunner.class)
  10. @SpringBootTest
  11. public class SpringbootApplicationTests {
  12. @Test
  13. public void contextLoads() {
  14. }
  15. }