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
diff --git a/example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java b/example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java
new file mode 100644 (file)
index 0000000..8dfe937
--- /dev/null
@@ -0,0 +1,16 @@
+package org.onap.boot.example.demo;
+
+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
+public class SpringBootServiceApplicationTests {
+
+       @Test
+       public void contextLoads() {
+       }
+
+}