summaryrefslogtreecommitdiffstats
path: root/portal-BE/src/test
diff options
context:
space:
mode:
authorDominik Mizyn <d.mizyn@samsung.com>2019-08-20 13:29:19 +0200
committerDominik Mizyn <d.mizyn@samsung.com>2019-08-21 18:03:14 +0200
commitbe4683266e746536beba8afb428a74fe2c2a238c (patch)
tree630a46a5b88bab6422864cc168f9ef3fb89835d2 /portal-BE/src/test
parentb127daea0b73c4f2b08441b535d99001df02e56b (diff)
Portal Spring Boot Development
Spring Security/Session up Issue-ID: PORTAL-710 Signed-off-by: Dominik Mizyn <d.mizyn@samsung.com> Change-Id: I1d2aa22977d5eff43fd9f7e6a964b9446e26593f
Diffstat (limited to 'portal-BE/src/test')
-rw-r--r--portal-BE/src/test/java/org/onap/portal/PortalApplicationTests.java5
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