![JAR search and dependency download from the Maven repository](/logo.png)
com.toomuchcoding.jsonassert.BDDJsonAssertions 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.BDDAssertions;
import com.jayway.jsonpath.DocumentContext;
/**
* Entry point for {@link DocumentContext} {@link BDDAssertions}
*
* @author Marcin Grzejszczak
*
* @since 0.2.0
*/
public class BDDJsonAssertions extends BDDAssertions {
public static JsonPathAssert then(DocumentContext actual) {
return new JsonPathAssert(actual);
}
public static JsonPathAssert then(JsonVerifiable actual) {
return new JsonPathAssert(actual);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy