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

tech.uom.lib.assertj.assertions.UnitAssert Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
package tech.uom.lib.assertj.assertions;

import javax.measure.Unit;

/**
 * {@link Unit} specific assertions - Generated by CustomAssertionGenerator.
 *
 * Although this class is not final to allow Soft assertions proxy, if you wish to extend it, 
 * extend {@link AbstractUnitAssert} instead.
 */
@javax.annotation.Generated(value="assertj-assertions-generator")
public class UnitAssert extends AbstractUnitAssert {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy