All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.toomuchcoding.jsonassert.JsonAssertions Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy