added spring boot example using msb java sdk
[msb/java-sdk.git] / example-spring-boot / src / test / java / org / onap / boot / example / demo / SpringBootServiceApplicationTests.java
1 package org.onap.boot.example.demo;
2
3 import org.junit.Test;
4 import org.junit.runner.RunWith;
5 import org.springframework.boot.test.context.SpringBootTest;
6 import org.springframework.test.context.junit4.SpringRunner;
7
8 @RunWith(SpringRunner.class)
9 @SpringBootTest
10 public class SpringBootServiceApplicationTests {
11
12         @Test
13         public void contextLoads() {
14         }
15
16 }