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