aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java
diff options
context:
space:
mode:
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() {
+ }
+
+}