io.fabric8.openshift.api.model.RecreateDeploymentStrategyParamsAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes-assertions
Show all versions of kubernetes-assertions
This library provides a bunch of helpful assertj assertions for working with the kubernetes-api.
The newest version!
package io.fabric8.openshift.api.model;
/**
* {@link RecreateDeploymentStrategyParams} specific assertions - Generated by CustomAssertionGenerator.
*
* Although this class is not final to allow Soft assertions proxy, if you wish to extend it,
* extend {@link AbstractRecreateDeploymentStrategyParamsAssert} instead.
*/
public class RecreateDeploymentStrategyParamsAssert extends AbstractRecreateDeploymentStrategyParamsAssert {
/**
* Creates a new {@link RecreateDeploymentStrategyParamsAssert}
to make assertions on actual RecreateDeploymentStrategyParams.
* @param actual the RecreateDeploymentStrategyParams we want to make assertions on.
*/
public RecreateDeploymentStrategyParamsAssert(RecreateDeploymentStrategyParams actual) {
super(actual, RecreateDeploymentStrategyParamsAssert.class);
}
/**
* An entry point for RecreateDeploymentStrategyParamsAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myRecreateDeploymentStrategyParams)
and get specific assertion with code completion.
* @param actual the RecreateDeploymentStrategyParams we want to make assertions on.
* @return a new {@link RecreateDeploymentStrategyParamsAssert}
*/
public static RecreateDeploymentStrategyParamsAssert assertThat(RecreateDeploymentStrategyParams actual) {
return new RecreateDeploymentStrategyParamsAssert(actual);
}
}