Package org.jtester.hamcrest.iassert.object.impl

Examples of org.jtester.hamcrest.iassert.object.impl.NumberAssert


   *
   * @param decimal
   * @return
   */
  public INumberAssert<BigDecimal, ?> number(BigDecimal decimal) {
    return new NumberAssert(decimal, NumberAssert.class, BigDecimal.class);
  }
View Full Code Here


   *
   * @param decimal
   * @return
   */
  public INumberAssert<BigInteger, ?> number(BigInteger bigint) {
    return new NumberAssert(bigint, NumberAssert.class, BigInteger.class);
  }
View Full Code Here

   *
   * @param decimal
   * @return
   */
  public INumberAssert<Byte, ?> number(Byte byt) {
    return new NumberAssert(byt, NumberAssert.class, Byte.class);
  }
View Full Code Here

   * a parameter number(integer, long, double,short,float) will be expected
   *
   * @return
   */
  public INumberAssert number() {
    return new NumberAssert(NumberAssert.class);
  }
View Full Code Here

TOP

Related Classes of org.jtester.hamcrest.iassert.object.impl.NumberAssert

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.