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