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