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