Package org.hamcrest.core

Examples of org.hamcrest.core.IsEqual


  public boolean matches(Object obj) {
    if (!(obj instanceof Collection)) {
      return false;
    }

    return new IsEqual(((Collection) sourceCollection).toArray()).matches(((Collection) obj).toArray());
  }
View Full Code Here


    private final String propertyName;

    public PropertyMatcher(PropertyDescriptor descriptor, Object expectedObject) {
      this.propertyName = descriptor.getDisplayName();
      this.readMethod = descriptor.getReadMethod();
      this.matcher = new IsEqual(readProperty(readMethod, expectedObject));
    }
View Full Code Here

TOP

Related Classes of org.hamcrest.core.IsEqual

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.