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