Uses of Interface
com.jayway.jsonassert.JsonAsserter
-
Packages that use JsonAsserter Package Description com.jayway.jsonassert com.jayway.jsonassert.impl -
-
Uses of JsonAsserter in com.jayway.jsonassert
Methods in com.jayway.jsonassert that return JsonAsserter Modifier and Type Method Description JsonAsserterJsonAsserter. and()Deprecated.Syntactic sugar to allow chaining assertions with a separating and() statement<T> JsonAsserterJsonAsserter. assertEquals(java.lang.String path, T expected)Deprecated.Asserts that object specified by path is equal to the expected value.<T> JsonAsserterJsonAsserter. assertEquals(java.lang.String path, T expected, java.lang.String message)Deprecated.JsonAsserterJsonAsserter. assertNotDefined(java.lang.String path)Deprecated.Checks that a path is not defined within a document.JsonAsserterJsonAsserter. assertNotDefined(java.lang.String path, java.lang.String message)Deprecated.<T> JsonAsserterJsonAsserter. assertNotNull(java.lang.String path)Deprecated.Asserts that object specified by path is NOT null.<T> JsonAsserterJsonAsserter. assertNotNull(java.lang.String path, java.lang.String message)Deprecated.JsonAsserterJsonAsserter. assertNull(java.lang.String path)Deprecated.Asserts that object specified by path is null.JsonAsserterJsonAsserter. assertNull(java.lang.String path, java.lang.String message)Deprecated.<T> JsonAsserterJsonAsserter. assertThat(java.lang.String path, org.hamcrest.Matcher<T> matcher)Deprecated.Asserts that object specified by path satisfies the condition specified by matcher.<T> JsonAsserterJsonAsserter. assertThat(java.lang.String path, org.hamcrest.Matcher<T> matcher, java.lang.String message)Deprecated.static JsonAsserterJsonAssert. with(java.io.InputStream is)Deprecated.Creates a JSONAsserterstatic JsonAsserterJsonAssert. with(java.io.Reader reader)Deprecated.Creates a JSONAsserterstatic JsonAsserterJsonAssert. with(java.lang.String json)Deprecated.Creates a JSONAsserter -
Uses of JsonAsserter in com.jayway.jsonassert.impl
Classes in com.jayway.jsonassert.impl that implement JsonAsserter Modifier and Type Class Description classJsonAsserterImplMethods in com.jayway.jsonassert.impl that return JsonAsserter Modifier and Type Method Description JsonAsserterJsonAsserterImpl. and()Syntactic sugar to allow chaining assertions with a separating and() statement<T> JsonAsserterJsonAsserterImpl. assertEquals(java.lang.String path, T expected)Asserts that object specified by path is equal to the expected value.<T> JsonAsserterJsonAsserterImpl. assertEquals(java.lang.String path, T expected, java.lang.String message)JsonAsserterJsonAsserterImpl. assertNotDefined(java.lang.String path)Checks that a path is not defined within a document.JsonAsserterJsonAsserterImpl. assertNotDefined(java.lang.String path, java.lang.String message)<T> JsonAsserterJsonAsserterImpl. assertNotNull(java.lang.String path)Asserts that object specified by path is NOT null.<T> JsonAsserterJsonAsserterImpl. assertNotNull(java.lang.String path, java.lang.String message)JsonAsserterJsonAsserterImpl. assertNull(java.lang.String path)Asserts that object specified by path is null.JsonAsserterJsonAsserterImpl. assertNull(java.lang.String path, java.lang.String message)<T> JsonAsserterJsonAsserterImpl. assertThat(java.lang.String path, org.hamcrest.Matcher<T> matcher)Asserts that object specified by path satisfies the condition specified by matcher.<T> JsonAsserterJsonAsserterImpl. assertThat(java.lang.String path, org.hamcrest.Matcher<T> matcher, java.lang.String message)
-