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