aboutsummaryrefslogtreecommitdiffstats
path: root/mso-catalog-db/src/test/java/org/onap/so/BaseTest.java
blob: 6e6db11c450cd15adc613222d9fae988449f0873 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.so;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest(classes = TestApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@ActiveProfiles("test")
public class BaseTest {
    @Test
    public void testNothing(){}
}