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