blob: 259a5f9c554455d3ff622984863506867bac8f64 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.functor.core;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotSame;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import org.apache.commons.functor.BaseFunctorTest;
import org.apache.commons.functor.BinaryPredicate;
import org.apache.commons.functor.Predicate;
import org.junit.Test;
/**
* @version $Revision$ $Date$
*/
public class TestIsSame extends BaseFunctorTest {
// Functor Testing Framework
// ------------------------------------------------------------------------
@Override
protected Object makeFunctor() {
return new IsSame<Object, Object>();
}
// Tests
// ------------------------------------------------------------------------
@Test
public void testTest() throws Exception {
IsSame<Object, Object> p = new IsSame<Object, Object>();
assertTrue("For symmetry, two nulls should be same", p.test(null, null));
assertTrue(p.test("foo", "foo"));
assertFalse(p.test(null, "foo"));
assertFalse(p.test("foo", null));
assertFalse(p.test(new Integer(3), new Integer(3)));
assertFalse(p.test(null, new Integer(3)));
assertFalse(p.test(new Integer(3), null));
assertFalse(p.test(new Integer(3), new Integer(4)));
assertFalse(p.test(new Integer(4), new Integer(3)));
assertFalse(p.test("3", new Integer(3)));
assertFalse(p.test(new Integer(3), "3"));
}
@Test
public void testEquals() throws Exception {
BinaryPredicate<Object, Object> f = new IsSame<Object, Object>();
assertEquals(f, f);
assertObjectsAreEqual(f, new IsSame<Object, Object>());
assertObjectsAreEqual(f, IsSame.instance());
assertObjectsAreNotEqual(f, Constant.truePredicate());
}
@Test
public void testConstant() throws Exception {
assertEquals(IsSame.instance(), IsSame.instance());
assertNotSame(IsSame.instance(), IsSame.instance());
assertSame(IsSame.INSTANCE, IsSame.INSTANCE);
}
@Test
public void testAsPredicate() {
Integer one = new Integer(1);
Predicate<Integer> isSame = IsSame.as(one);
assertTrue(isSame.test(one));
assertFalse(isSame.test(new Integer(2)));
}
}