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

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


  public IMapAssert queryAsMap(String query) {
    IN_DB_OPERATOR.set(true);
    try {
      Map<String, Object> map = SqlRunner.queryMap(query);
      return new MapAssert(map);
    } finally {
      IN_DB_OPERATOR.set(false);
    }
  }
View Full Code Here


   * @param value
   *            a map argument
   * @return
   */
  public IMapAssert map(Map map) {
    return new MapAssert(map);
  }
View Full Code Here

   * a parameter map will be asserted
   *
   * @return
   */
  public IMapAssert map() {
    return new MapAssert();
  }
View Full Code Here

TOP

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

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.