aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java
diff options
context:
space:
mode:
authorvirajput <vijendra_rajput@infosys.com>2017-08-31 15:46:27 +0530
committervirajput <vijendra_rajput@infosys.com>2017-08-31 15:49:51 +0530
commite638628b22fef6f480fa104cd696834dddf6c030 (patch)
treedd66e5f9c794eca6b6239ee5dbff980a2f8bf647 /example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java
parentde0c3cac5c259a83eba9711aa295ddf919fd6df5 (diff)
added spring boot example using msb java sdk
Issue-Id: MSB-23 Change-Id: Ic3caf7d63a4588aab73df1b07da3d15d6edfa485 Signed-off-by: virajput <vijendra_rajput@infosys.com>
Diffstat (limited to 'example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java')
-rw-r--r--example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java16
1 files changed, 16 insertions, 0 deletions
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
index 0000000..8dfe937
--- /dev/null
+++ b/example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java
@@ -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() {
+ }
+
+}