replace all fixed wiremock ports
[so.git] / adapters / mso-requests-db-adapter / src / test / java / org / onap / so / adapters / requestsdb / RequestsAdapterBase.java
1 package org.onap.so.adapters.requestsdb;
2
3 import org.junit.runner.RunWith;
4 import org.onap.so.adapters.requestsdb.application.MSORequestDBApplication;
5 import org.springframework.boot.test.context.SpringBootTest;
6 import org.springframework.test.context.ActiveProfiles;
7 import org.springframework.test.context.junit4.SpringRunner;
8
9 @RunWith(SpringRunner.class)
10 @SpringBootTest(classes = MSORequestDBApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
11 @ActiveProfiles("test")
12 public class RequestsAdapterBase {
13
14 }