io.fabric8.kubernetes.api.model.ConfigMapNodeConfigSourceAssert 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 ConfigMapNodeConfigSource} specific assertions - Generated by CustomAssertionGenerator.
*
* Although this class is not final to allow Soft assertions proxy, if you wish to extend it,
* extend {@link AbstractConfigMapNodeConfigSourceAssert} instead.
*/
public class ConfigMapNodeConfigSourceAssert extends AbstractConfigMapNodeConfigSourceAssert {
/**
* Creates a new {@link ConfigMapNodeConfigSourceAssert}
to make assertions on actual ConfigMapNodeConfigSource.
* @param actual the ConfigMapNodeConfigSource we want to make assertions on.
*/
public ConfigMapNodeConfigSourceAssert(ConfigMapNodeConfigSource actual) {
super(actual, ConfigMapNodeConfigSourceAssert.class);
}
/**
* An entry point for ConfigMapNodeConfigSourceAssert to follow AssertJ standard assertThat()
statements.
* With a static import, one can write directly: assertThat(myConfigMapNodeConfigSource)
and get specific assertion with code completion.
* @param actual the ConfigMapNodeConfigSource we want to make assertions on.
* @return a new {@link ConfigMapNodeConfigSourceAssert}
*/
public static ConfigMapNodeConfigSourceAssert assertThat(ConfigMapNodeConfigSource actual) {
return new ConfigMapNodeConfigSourceAssert(actual);
}
}