4da4f68e993215d08d98d4d0de2a95d36adcdebc
[portal.git] / portal-BE / src / test / java / org / onap / portal / PortalApplicationTests.java
1 package org.onap.portal;
2
3 import org.junit.jupiter.api.Test;
4 import org.junit.runner.RunWith;
5 import org.springframework.boot.test.context.SpringBootTest;
6 import org.springframework.test.context.TestPropertySource;
7 import org.springframework.test.context.junit4.SpringRunner;
8
9 @RunWith(SpringRunner.class)
10 @SpringBootTest
11 @TestPropertySource(locations="classpath:test.properties")
12 class PortalApplicationTests {
13
14         @Test
15         void contextLoads() {
16         }
17
18 }