Examples of ArrayAssert


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

   * @param value
   *            a array variable
   * @return
   */
  public <T extends Object> IArrayAssert array(T value[]) {
    return new ArrayAssert(value);
  }
View Full Code Here

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

   * @param value
   *            a array variable
   * @return
   */
  public <T extends Object> IArrayAssert list(T value[]) {
    return new ArrayAssert(value);
  }
View Full Code Here

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

   * @param value
   *            a boolean array
   * @return
   */
  public IArrayAssert list(boolean value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a byte array
   * @return
   */
  public IArrayAssert list(byte value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a character array
   * @return
   */
  public IArrayAssert list(char value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a short array
   * @return
   */
  public IArrayAssert list(short value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a integer array
   * @return
   */
  public IArrayAssert list(int value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a long array
   * @return
   */
  public IArrayAssert list(long value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a float array
   * @return
   */
  public IArrayAssert list(float value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here

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

   * @param value
   *            a double array
   * @return
   */
  public IArrayAssert list(double value[]) {
    return new ArrayAssert(ArrayHelper.toArray(value));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.