blob: aab894fd6f2fbc7a0ed1548af0a19666f54919b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal.predicate;
import junit.framework.TestCase;
import org.eclipse.jpt.common.utility.internal.predicate.IsNotNull;
import org.eclipse.jpt.common.utility.internal.predicate.PredicateTools;
import org.eclipse.jpt.common.utility.predicate.Predicate;
import org.eclipse.jpt.common.utility.tests.internal.TestTools;
@SuppressWarnings("nls")
public class EqualsTests
extends TestCase
{
private Predicate<Integer> equalPredicate;
public EqualsTests(String name) {
super(name);
}
@Override
protected void setUp() throws Exception {
super.setUp();
this.equalPredicate = PredicateTools.isEqual(Integer.valueOf(42));
}
@Override
protected void tearDown() throws Exception {
TestTools.clear(this);
super.tearDown();
}
@SuppressWarnings("boxing")
public void testEvaluate() {
assertTrue(this.equalPredicate.evaluate(new Integer(42)));
assertTrue(this.equalPredicate.evaluate(42));
assertTrue(this.equalPredicate.evaluate(Integer.valueOf("42")));
assertFalse(this.equalPredicate.evaluate(null));
assertFalse(this.equalPredicate.evaluate(24));
}
public void testEquals() {
Predicate<Integer> equalPredicate2 = PredicateTools.isEqual(new Integer(42));
assertEquals(this.equalPredicate, equalPredicate2);
assertEquals(this.equalPredicate.hashCode(), equalPredicate2.hashCode());
assertFalse(this.equalPredicate.equals(IsNotNull.instance()));
}
}