diff options
author | econwar <conor.ward@ericsson.com> | 2018-08-23 13:46:30 +0000 |
---|---|---|
committer | econwar <conor.ward@ericsson.com> | 2018-08-23 13:46:30 +0000 |
commit | 81734bd958d199b695cd7be8deacb0855929338b (patch) | |
tree | 16b2bb5d1c22c8dddd906fe4638534392c7fe3a3 /datarouter-node/pom.xml | |
parent | 118900e50d71a3db8bd6e304151cc7c20b4fbda9 (diff) |
Add Unit Tests for NodeConfig
Change-Id: Ide27314a030d412892fbcd26f1be7d687f747751
Signed-off-by: Conor Ward <conor.ward@ericsson.com>
Issue-ID: DMAAP-101
Diffstat (limited to 'datarouter-node/pom.xml')
-rwxr-xr-x | datarouter-node/pom.xml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/datarouter-node/pom.xml b/datarouter-node/pom.xml index 6cc396a1..61e95400 100755 --- a/datarouter-node/pom.xml +++ b/datarouter-node/pom.xml @@ -186,6 +186,35 @@ <version>1.2.17</version> <scope>compile</scope> </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.10</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mockito</groupId> + <artifactId>mockito-core</artifactId> + <version>1.10.19</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <version>1.6.4</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>3.0</version> + </dependency> </dependencies> <profiles> <profile> |