| Package | Description |
|---|---|
| net.javacrumbs.jsonunit.assertj |
| Modifier and Type | Method and Description |
|---|---|
JsonAssert |
JsonAssert.and(JsonAssertion... assertions)
Allows to do multiple comparisons on a document like
assertThatJson("{\"test\":{\"a\":1, \"b\":2, \"c\":3}}").and(
a -> a.node("test").isObject(),
a -> a.node("test.b").isEqualTo(3)
);
|
Copyright © 2019. All rights reserved.