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