io.fabric8.kubernetes.api.model.StatusAssert Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
/**
* {@link Status} specific assertions - Generated by CustomAssertionGenerator.
*
* Although this class is not final to allow Soft assertions proxy, if you wish to extend it,
* extend {@link AbstractStatusAssert} instead.
*/
public class StatusAssert extends AbstractStatusAssert {
/**
* Creates a new {@link StatusAssert}
to make assertions on actual Status.
* @param actual the Status we want to make assertions on.
*/
public StatusAssert(Status actual) {
super(actual, StatusAssert.class);
}
/**
* An entry point for StatusAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myStatus)
and get specific assertion with code completion.
* @param actual the Status we want to make assertions on.
* @return a new {@link StatusAssert}
*/
public static StatusAssert assertThat(Status actual) {
return new StatusAssert(actual);
}
}