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
committed by GitHub
parent 032a1637ab
commit e5b9eb9843
11 changed files with 76 additions and 17 deletions

View File

@@ -91,7 +91,7 @@ class SpringCloudContractVerifierGradlePlugin implements Plugin<Project> {
//TODO: Deprecate this since starting with 1.1.x
private void addProjectDependencies(Project project) {
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")
}