Asserting empty array in the response (#211)

with this change we're using new JSONAssert that allows to check if an array is empty

fixes #203
This commit is contained in:
Marcin Grzejszczak
2017-02-02 13:24:10 +01:00
parent 87ec2a0f62
commit 79c6a2e72c
11 changed files with 76 additions and 17 deletions

View File

@@ -94,7 +94,7 @@ class SpringCloudContractVerifierGradlePlugin implements Plugin<Project> {
private void addProjectDependencies(Project project) {
//TODO: Consider removing this at some point
project.dependencies.add("testCompile", "com.github.tomakehurst:wiremock:2.1.7")
project.dependencies.add("testCompile", "com.toomuchcoding.jsonassert:jsonassert:0.4.7")
project.dependencies.add("testCompile", "com.toomuchcoding.jsonassert:jsonassert:0.4.8")
project.dependencies.add("testCompile", "org.assertj:assertj-core:2.3.0")
}