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