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

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

package io.fabric8.openshift.api.model;


/**
 * {@link Dec} specific assertions - Generated by CustomAssertionGenerator.
 *
 * Although this class is not final to allow Soft assertions proxy, if you wish to extend it, 
 * extend {@link AbstractDecAssert} instead.
 */
public class DecAssert extends AbstractDecAssert {

  /**
   * Creates a new {@link DecAssert} to make assertions on actual Dec.
   * @param actual the Dec we want to make assertions on.
   */
  public DecAssert(Dec actual) {
    super(actual, DecAssert.class);
  }

  /**
   * An entry point for DecAssert to follow AssertJ standard assertThat() statements.
* With a static import, one can write directly: assertThat(myDec) and get specific assertion with code completion. * @param actual the Dec we want to make assertions on. * @return a new {@link DecAssert} */ public static DecAssert assertThat(Dec actual) { return new DecAssert(actual); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy