All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.openshift.api.model.AbstractGitBuildSourceAssert Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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 GitBuildSource} specific assertions - Generated by CustomAssertionGenerator.
 */
public abstract class AbstractGitBuildSourceAssert, A extends GitBuildSource> extends AbstractAssert {

  /**
   * Creates a new {@link AbstractGitBuildSourceAssert} to make assertions on actual GitBuildSource.
   * @param actual the GitBuildSource we want to make assertions on.
   */
  protected AbstractGitBuildSourceAssert(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 GitBuildSource 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 httpProxy so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert httpProxy()  {
    // check that actual GitBuildSource we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getHttpProxy()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "httpProxy"));
  }


  /**
   * Navigates to the property httpsProxy so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert httpsProxy()  {
    // check that actual GitBuildSource we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getHttpsProxy()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "httpsProxy"));
  }


  /**
   * Navigates to the property noProxy so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert noProxy()  {
    // check that actual GitBuildSource we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getNoProxy()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "noProxy"));
  }


  /**
   * Navigates to the property ref so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert ref()  {
    // check that actual GitBuildSource we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getRef()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "ref"));
  }


  /**
   * Navigates to the property uri so that assertions can be done on it
   */
  public org.assertj.core.api.StringAssert uri()  {
    // check that actual GitBuildSource we want to make assertions on is not null.
    isNotNull();

    // return the assertion for the property
    return (org.assertj.core.api.StringAssert) assertThat(actual.getUri()).describedAs(com.stakater.kubernetes.assertions.Assertions.joinDescription(this, "uri"));
  }


}