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