io.fabric8.kubernetes.api.model.NodeAssert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assertions Show documentation
Show all versions of assertions Show documentation
A port of Kubernetes Assertions Library by Fabric8
package io.fabric8.kubernetes.api.model;
/**
* {@link Node} specific assertions - Generated by CustomAssertionGenerator.
*
* Although this class is not final to allow Soft assertions proxy, if you wish to extend it,
* extend {@link AbstractNodeAssert} instead.
*/
public class NodeAssert extends AbstractNodeAssert {
/**
* Creates a new {@link NodeAssert}
to make assertions on actual Node.
* @param actual the Node we want to make assertions on.
*/
public NodeAssert(Node actual) {
super(actual, NodeAssert.class);
}
/**
* An entry point for NodeAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myNode)
and get specific assertion with code completion.
* @param actual the Node we want to make assertions on.
* @return a new {@link NodeAssert}
*/
public static NodeAssert assertThat(Node actual) {
return new NodeAssert(actual);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy