replace all fixed wiremock ports
[so.git] / adapters / mso-catalog-db-adapter / src / test / java / org / onap / so / adapters / catalogdb / CatalogDbAdapterBaseTest.java
1 package org.onap.so.adapters.catalogdb;
2
3 import org.junit.Test;
4 import org.junit.runner.RunWith;
5 import org.springframework.boot.test.context.SpringBootTest;
6 import org.springframework.boot.web.server.LocalServerPort;
7 import org.springframework.test.context.ActiveProfiles;
8 import org.springframework.test.context.junit4.SpringRunner;
9
10 @RunWith(SpringRunner.class)
11 @SpringBootTest(classes = CatalogDBApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
12 @ActiveProfiles("test")
13 public class CatalogDbAdapterBaseTest {
14
15         @LocalServerPort
16         protected int port;
17         
18         
19         @Test
20     public void testNothing(){}
21 }