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