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