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