![JAR search and dependency download from the Maven repository](/logo.png)
com.toomuchcoding.jsonassert.JsonAssertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonassert-assertj-java7 Show documentation
Show all versions of jsonassert-assertj-java7 Show documentation
Small library for those who have a hard time understanding the complexity of JSON Path.'
package com.toomuchcoding.jsonassert;
import org.assertj.core.api.Assertions;
import com.jayway.jsonpath.DocumentContext;
/**
* Entry point for {@link DocumentContext} {@link Assertions}
*
* @author Marcin Grzejszczak
*
* @since 0.2.0
*/
public class JsonAssertions extends Assertions {
public static JsonPathAssert assertThat(DocumentContext actual) {
return new JsonPathAssert(actual);
}
public static JsonPathAssert assertThat(JsonVerifiable actual) {
return new JsonPathAssert(actual);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy