io.fabric8.openshift.api.model.AbstractRoleBindingAssert 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.openshift.api.model;
import org.assertj.core.api.AbstractAssert;
import org.assertj.core.api.Assertions;
import org.assertj.core.api.AssertFactory;
import com.stakater.kubernetes.assertions.NavigationListAssert;
import static org.assertj.core.api.Assertions.assertThat;
import static io.fabric8.kubernetes.assertions.internal.Assertions.assertThat;
/**
* Abstract base class for {@link RoleBinding} specific assertions - Generated by CustomAssertionGenerator.
*/
public abstract class AbstractRoleBindingAssert, A extends RoleBinding> extends AbstractAssert {
/**
* Creates a new {@link AbstractRoleBindingAssert}
to make assertions on actual RoleBinding.
* @param actual the RoleBinding we want to make assertions on.
*/
protected AbstractRoleBindingAssert(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 RoleBinding 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(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "additionalProperties"));
}
/**
* Navigates to the property apiVersion so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert apiVersion() {
// check that actual RoleBinding we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getApiVersion()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "apiVersion"));
}
/**
* Navigates to the property groupNames so that assertions can be done on it
*/
public NavigationListAssert groupNames() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public org.assertj.core.api.StringAssert createAssert(String t) {
return (org.assertj.core.api.StringAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getGroupNames(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "groupNames"));
return answer;
}
/**
* Navigates to the property kind so that assertions can be done on it
*/
public org.assertj.core.api.StringAssert kind() {
// check that actual RoleBinding we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (org.assertj.core.api.StringAssert) assertThat(actual.getKind()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "kind"));
}
/**
* Navigates to the property metadata so that assertions can be done on it
*/
public io.fabric8.kubernetes.api.model.ObjectMetaAssert metadata() {
// check that actual RoleBinding we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (io.fabric8.kubernetes.api.model.ObjectMetaAssert) assertThat(actual.getMetadata()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "metadata"));
}
/**
* Navigates to the property roleRef so that assertions can be done on it
*/
public io.fabric8.kubernetes.api.model.ObjectReferenceAssert roleRef() {
// check that actual RoleBinding we want to make assertions on is not null.
isNotNull();
// return the assertion for the property
return (io.fabric8.kubernetes.api.model.ObjectReferenceAssert) assertThat(actual.getRoleRef()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "roleRef"));
}
/**
* Navigates to the property subjects so that assertions can be done on it
*/
public NavigationListAssert subjects() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public io.fabric8.kubernetes.api.model.ObjectReferenceAssert createAssert(io.fabric8.kubernetes.api.model.ObjectReference t) {
return (io.fabric8.kubernetes.api.model.ObjectReferenceAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getSubjects(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "subjects"));
return answer;
}
/**
* Navigates to the property userNames so that assertions can be done on it
*/
public NavigationListAssert userNames() {
isNotNull();
// return the assertion for the property
AssertFactory assertFactory = new AssertFactory() {
public org.assertj.core.api.StringAssert createAssert(String t) {
return (org.assertj.core.api.StringAssert) assertThat(t);
}
};
NavigationListAssert answer = new NavigationListAssert(actual.getUserNames(), assertFactory);
answer.describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "userNames"));
return answer;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy