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