io.fabric8.kubernetes.api.model.AbstractGCEPersistentDiskVolumeSourceAssert Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import org.assertj.core.api.AbstractAssert;
import org.assertj.core.api.Assertions;
import org.assertj.core.util.Objects;
import io.fabric8.kubernetes.assertions.AssertFactory;
import io.fabric8.kubernetes.assertions.NavigationListAssert;
import static org.assertj.core.api.Assertions.assertThat;
import static io.fabric8.kubernetes.assertions.internal.Assertions.assertThat;
import static io.fabric8.openshift.assertions.Assertions.assertThat;
/**
* Abstract base class for {@link GCEPersistentDiskVolumeSource} specific assertions - Generated by CustomAssertionGenerator.
*/
public abstract class AbstractGCEPersistentDiskVolumeSourceAssert, A extends GCEPersistentDiskVolumeSource> extends AbstractAssert {
/**
* Creates a new {@link AbstractGCEPersistentDiskVolumeSourceAssert}
to make assertions on actual GCEPersistentDiskVolumeSource.
* @param actual the GCEPersistentDiskVolumeSource we want to make assertions on.
*/
protected AbstractGCEPersistentDiskVolumeSourceAssert(A actual, Class selfType) {
super(actual, selfType);
}
/**
* Navigates to the property additionalProperties so that assertions can be done on it
*/
public org.assertj.core.api.MapAssert additionalProperties() {
// check that actual GCEPersistentDiskVolumeSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.MapAssert) assertThat(actual.getAdditionalProperties()).describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "additionalProperties"));
}
/**
* Navigates to the property fsType so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert fsType() {
// check that actual GCEPersistentDiskVolumeSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getFsType()).describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "fsType"));
}
/**
* Verifies that the actual GCEPersistentDiskVolumeSource's partition is equal to the given one.
* @param partition the given partition to compare the actual GCEPersistentDiskVolumeSource's partition to.
* @return this assertion object.
* @throws AssertionError - if the actual GCEPersistentDiskVolumeSource's partition is not equal to the given one.
*/
public S hasPartition(Integer partition) {
// check that actual GCEPersistentDiskVolumeSource we want to make assertions on is not null.
isNotNull();
// overrides the default error message with a more explicit one
String assertjErrorMessage = "\nExpecting partition of:\n <%s>\nto be:\n <%s>\nbut was:\n <%s>";
// null safe check
Integer actualPartition = actual.getPartition();
if (!Objects.areEqual(actualPartition, partition)) {
failWithMessage(assertjErrorMessage, actual, partition, actualPartition);
}
// return the current assertion for method chaining
return myself;
}
/**
* Navigates to the property pdName so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert pdName() {
// check that actual GCEPersistentDiskVolumeSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getPdName()).describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "pdName"));
}
/**
* Navigates to the property readOnly so that assertions can be done on it
*/
public org.assertj.core.api.BooleanAssert readOnly() {
// check that actual GCEPersistentDiskVolumeSource we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.BooleanAssert) assertThat(actual.getReadOnly()).describedAs(io.fabric8.kubernetes.assertions.Assertions.joinDescription(this, "readOnly"));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy