diff options
author | Lorraine Welch <lb2391@att.com> | 2019-12-17 20:48:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-17 20:48:52 +0000 |
commit | ba2d7bcaf4ce42fd0c8742dc462ef0160bdfd8f7 (patch) | |
tree | b98cf8d684284477a126541bc99612053e88facd /portal-BE/src/test | |
parent | 662c0ad3e5874c4db01414338a0a6676adb29c8d (diff) | |
parent | 2b436dba4b7c12e8c97f040753d0d5044d580b8d (diff) |
Merge "Deprecated class and annotation change"
Diffstat (limited to 'portal-BE/src/test')
-rw-r--r-- | portal-BE/src/test/java/org/onap/portal/framework/MockitoTestSuite.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/portal-BE/src/test/java/org/onap/portal/framework/MockitoTestSuite.java b/portal-BE/src/test/java/org/onap/portal/framework/MockitoTestSuite.java index 1825e401..49c4829b 100644 --- a/portal-BE/src/test/java/org/onap/portal/framework/MockitoTestSuite.java +++ b/portal-BE/src/test/java/org/onap/portal/framework/MockitoTestSuite.java @@ -37,16 +37,17 @@ */ package org.onap.portal.framework; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.springframework.test.context.junit4.SpringRunner; + import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequestWrapper; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.Mockito; -import org.mockito.runners.MockitoJUnitRunner; -@RunWith(MockitoJUnitRunner.class) +@RunWith(SpringRunner.class) public class MockitoTestSuite { |