io.fabric8.kubernetes.api.model.apiextensions.JSONAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes-assertions
Show all versions of kubernetes-assertions
This library provides a bunch of helpful assertj assertions for working with the kubernetes-api.
The newest version!
package io.fabric8.kubernetes.api.model.apiextensions;
/**
* {@link JSON} specific assertions - Generated by CustomAssertionGenerator.
*
* Although this class is not final to allow Soft assertions proxy, if you wish to extend it,
* extend {@link AbstractJSONAssert} instead.
*/
public class JSONAssert extends AbstractJSONAssert {
/**
* Creates a new {@link JSONAssert}
to make assertions on actual JSON.
* @param actual the JSON we want to make assertions on.
*/
public JSONAssert(JSON actual) {
super(actual, JSONAssert.class);
}
/**
* An entry point for JSONAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myJSON)
and get specific assertion with code completion.
* @param actual the JSON we want to make assertions on.
* @return a new {@link JSONAssert}
*/
public static JSONAssert assertThat(JSON actual) {
return new JSONAssert(actual);
}
}