Bumped up JSON Assert to 0.4.1
This commit is contained in:
@@ -65,6 +65,15 @@ class DelegatingJsonVerifiable implements MethodBufferingJsonVerifiable {
|
||||
return verifiable;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MethodBufferingJsonVerifiable field(String... strings) {
|
||||
MethodBufferingJsonVerifiable verifiable = null;
|
||||
for (String string : strings) {
|
||||
verifiable = verifiable == null ? field(string) : verifiable.field(string);
|
||||
}
|
||||
return verifiable;
|
||||
}
|
||||
|
||||
@Override
|
||||
public MethodBufferingJsonVerifiable array(Object value) {
|
||||
DelegatingJsonVerifiable verifiable = new DelegatingJsonVerifiable(delegate.array(value), methodsBuffer);
|
||||
@@ -227,4 +236,9 @@ class DelegatingJsonVerifiable implements MethodBufferingJsonVerifiable {
|
||||
", methodsBuffer=" + methodsBuffer +
|
||||
'}';
|
||||
}
|
||||
|
||||
@Override
|
||||
public <T> T read(Class<T> aClass) {
|
||||
return delegate.read(aClass);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ nexusUsername =
|
||||
nexusPassword =
|
||||
|
||||
wiremockVersion = 2.0.10-beta
|
||||
jsonassertVersion = 0.2.2
|
||||
jsonassertVersion = 0.4.1
|
||||
|
||||
BOM_VERSION=Brixton-1.0.0.RC1
|
||||
springBootVersion=1.3.3.RELEASE
|
||||
|
||||
Reference in New Issue
Block a user