diff options
Diffstat (limited to 'portal-BE/src/test')
-rw-r--r-- | portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java b/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java index 24871dc4..4da4f68e 100644 --- a/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java +++ b/portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java @@ -1,9 +1,14 @@ 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 |