Package org.jtester.hamcrest.matcher.property

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


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

TOP

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

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.