aboutsummaryrefslogtreecommitdiffstats
path: root/example-spring-boot/src/test/java/org/onap/boot/example/demo/SpringBootServiceApplicationTests.java
blob: 8dfe937d150e7e3f09e2e689edc6e57c961432e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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() {
	}

}