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