|
EasyMock example source code file (Equals.java)
The EasyMock Equals.java source code/* * Copyright (c) 2001-2007 OFFIS, Tammo Freese. * This program is made available under the terms of the MIT License. */ package org.easymock.internal.matchers; import org.easymock.IArgumentMatcher; public class Equals implements IArgumentMatcher { private final Object expected; public Equals(Object expected) { this.expected = expected; } public boolean matches(Object actual) { if (this.expected == null) { return actual == null; } return expected.equals(actual); } public void appendTo(StringBuffer buffer) { appendQuoting(buffer); buffer.append(expected); appendQuoting(buffer); } private void appendQuoting(StringBuffer buffer) { if (expected instanceof String) { buffer.append("\""); } else if (expected instanceof Character) { buffer.append("'"); } } protected final Object getExpected() { return expected; } @Override public boolean equals(Object o) { if (o == null || !this.getClass().equals(o.getClass())) return false; Equals other = (Equals) o; return this.expected == null && other.expected == null || this.expected != null && this.expected.equals(other.expected); } @Override public int hashCode() { throw new UnsupportedOperationException("hashCode() is not supported"); } } Other EasyMock examples (source code examples)Here is a short list of links related to this EasyMock Equals.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.