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