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