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