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