Package org.jtester.hamcrest.matcher.property

Examples of org.jtester.hamcrest.matcher.property.PropertiesEqualMatcher


  public E propertyEq(String[] properties, Object expected, EqMode... modes) {
    if (expected instanceof Matcher) {
      throw new AssertionError("please use method[propertyMatch(String, Matcher)]");
    }
    PropertiesEqualMatcher matcher = new PropertiesEqualMatcher(expected, properties, modes);
    return this.assertThat(matcher);
  }
View Full Code Here

TOP

Related Classes of org.jtester.hamcrest.matcher.property.PropertiesEqualMatcher

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.