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