diff options
author | Serban Jora <jora@research.att.com> | 2017-10-02 13:20:50 -0400 |
---|---|---|
committer | Serban Jora <jora@research.att.com> | 2017-10-02 14:33:47 -0400 |
commit | cba3b4f6a26aee3009a56b899a1cb9f093aba805 (patch) | |
tree | 063d570fb8f3390ced12a4ed10efc4388d68d392 /javatoscachecker/service/pom.xml | |
parent | 53065490134870ead778bff590cfd9e43ddd9f77 (diff) |
Add unit testing
JUnit based testing added to the checker lib and service, work in progress.
Includes grammar correction.
Change-Id: I8fa950f89faba24e7b45ef41cbc0402362b3f394
Issue-Id: MODELING-26
Signed-off-by: Serban Jora <jora@research.att.com>
Diffstat (limited to 'javatoscachecker/service/pom.xml')
-rw-r--r-- | javatoscachecker/service/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/javatoscachecker/service/pom.xml b/javatoscachecker/service/pom.xml index ea9258d..26597c4 100644 --- a/javatoscachecker/service/pom.xml +++ b/javatoscachecker/service/pom.xml @@ -121,6 +121,25 @@ <dependencies> <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.12</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.assertj</groupId> + <artifactId>assertj-core</artifactId> + <version>3.8.0</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <version>1.5.3.RELEASE</version> + <scope>test</scope> + </dependency> + + <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>[2.7.8,)</version> |