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