io.fabric8.openshift.api.model.ProjectRequestAssert 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 ProjectRequest} specific assertions - Generated by CustomAssertionGenerator.
*
* Although this class is not final to allow Soft assertions proxy, if you wish to extend it,
* extend {@link AbstractProjectRequestAssert} instead.
*/
public class ProjectRequestAssert extends AbstractProjectRequestAssert {
/**
* Creates a new {@link ProjectRequestAssert}
to make assertions on actual ProjectRequest.
* @param actual the ProjectRequest we want to make assertions on.
*/
public ProjectRequestAssert(ProjectRequest actual) {
super(actual, ProjectRequestAssert.class);
}
/**
* An entry point for ProjectRequestAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myProjectRequest)
and get specific assertion with code completion.
* @param actual the ProjectRequest we want to make assertions on.
* @return a new {@link ProjectRequestAssert}
*/
public static ProjectRequestAssert assertThat(ProjectRequest actual) {
return new ProjectRequestAssert(actual);
}
}