Uses of Interface
com.jayway.jsonassert.JsonAsserter

Packages that use JsonAsserter
com.jayway.jsonassert   
com.jayway.jsonassert.impl   
 

Uses of JsonAsserter in com.jayway.jsonassert
 

Methods in com.jayway.jsonassert that return JsonAsserter
 JsonAsserter JsonAsserter.and()
          Syntactic sugar to allow chaining assertions with a separating and() statement

with(json).assertThat("firstName", is(equalTo("Bobby"))).and().assertThat("lastName", is(equalTo("Ewing")))

<T> JsonAsserter
JsonAsserter.assertEquals(String path, T expected)
          Asserts that object specified by path is equal to the expected value.
 JsonAsserter JsonAsserter.assertNotDefined(String path)
          Checks that a path is not defined within a document.
<T> JsonAsserter
JsonAsserter.assertNotNull(String path)
          Asserts that object specified by path is NOT null.
 JsonAsserter JsonAsserter.assertNull(String path)
          Asserts that object specified by path is null.
<T> JsonAsserter
JsonAsserter.assertThat(String path, org.hamcrest.Matcher<T> matcher)
          Asserts that object specified by path satisfies the condition specified by matcher.
static JsonAsserter JsonAssert.with(InputStream is)
          Creates a JSONAsserter
static JsonAsserter JsonAssert.with(Reader reader)
          Creates a JSONAsserter
static JsonAsserter JsonAssert.with(String json)
          Creates a JSONAsserter
 

Uses of JsonAsserter in com.jayway.jsonassert.impl
 

Classes in com.jayway.jsonassert.impl that implement JsonAsserter
 class JsonAsserterImpl
          User: kalle stenflo Date: 1/21/11 Time: 3:43 PM
 

Methods in com.jayway.jsonassert.impl that return JsonAsserter
 JsonAsserter JsonAsserterImpl.and()
          Syntactic sugar to allow chaining assertions with a separating and() statement

with(json).assertThat("firstName", is(equalTo("Bobby"))).and().assertThat("lastName", is(equalTo("Ewing")))

<T> JsonAsserter
JsonAsserterImpl.assertEquals(String path, T expected)
          Asserts that object specified by path is equal to the expected value.
 JsonAsserter JsonAsserterImpl.assertNotDefined(String path)
          Checks that a path is not defined within a document.
<T> JsonAsserter
JsonAsserterImpl.assertNotNull(String path)
          Asserts that object specified by path is NOT null.
 JsonAsserter JsonAsserterImpl.assertNull(String path)
          Asserts that object specified by path is null.
<T> JsonAsserter
JsonAsserterImpl.assertThat(String path, org.hamcrest.Matcher<T> matcher)
          Asserts that object specified by path satisfies the condition specified by matcher.
 



Copyright © 2011-2012. All Rights Reserved.