diff options
author | bobbymander <bobby.mander@att.com> | 2018-03-27 13:54:17 -0400 |
---|---|---|
committer | bobbymander <bobby.mander@att.com> | 2018-03-27 14:16:09 -0400 |
commit | c8cf3270ff412fc7fc138f0e53b1361c3b21fcbf (patch) | |
tree | bb12303ff992d3b51e571385045c28268e3fc572 /ONAP-PDP/pom.xml | |
parent | 0a91f57af987030eb63bc06a9c4fcafc024387ca (diff) |
JUnit additions and powermock pom fixes
Issue-ID: POLICY-602
Change-Id: I2484b47cc52a07413de69c1022a056fd0cf2d7d7
Signed-off-by: bobbymander <bobby.mander@att.com>
Diffstat (limited to 'ONAP-PDP/pom.xml')
-rw-r--r-- | ONAP-PDP/pom.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ONAP-PDP/pom.xml b/ONAP-PDP/pom.xml index 02057bd3a..a2cbc8b37 100644 --- a/ONAP-PDP/pom.xml +++ b/ONAP-PDP/pom.xml @@ -34,6 +34,25 @@ </parent> <dependencies> <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> + <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito --> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>1.7.3</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>1.7.3</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.onap.policy.engine</groupId> <version>${project.version}</version> <artifactId>ONAP-REST</artifactId> @@ -94,6 +113,11 @@ <version>${project.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>com.mockrunner</groupId> + <artifactId>mockrunner</artifactId> + <version>0.3.1</version> + </dependency> </dependencies> </project> |