From e638628b22fef6f480fa104cd696834dddf6c030 Mon Sep 17 00:00:00 2001 From: virajput Date: Thu, 31 Aug 2017 15:46:27 +0530 Subject: added spring boot example using msb java sdk Issue-Id: MSB-23 Change-Id: Ic3caf7d63a4588aab73df1b07da3d15d6edfa485 Signed-off-by: virajput --- .../example/demo/SpringBootServiceApplicationTests.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java (limited to 'example-spring-boot/src/test') 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() { + } + +} -- cgit 1.2.3-korg