io.fabric8.kubernetes.api.model.SysctlAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes-assertions
Show all versions of kubernetes-assertions
This library provides a bunch of helpful assertj assertions for working with the kubernetes-api.
The newest version!
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);
}
}