summaryrefslogtreecommitdiffstats
path: root/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java
blob: 4da4f68e993215d08d98d4d0de2a95d36adcdebc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.portal;

import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource(locations="classpath:test.properties")
class PortalApplicationTests {

	@Test
	void contextLoads() {
	}

}