001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.commons.functor.adapter;
018
019import static org.junit.Assert.assertEquals;
020import static org.junit.Assert.assertNotNull;
021import static org.junit.Assert.assertNull;
022import static org.junit.Assert.assertTrue;
023
024import org.apache.commons.functor.BaseFunctorTest;
025import org.apache.commons.functor.NullaryFunction;
026import org.apache.commons.functor.NullaryProcedure;
027import org.apache.commons.functor.core.Constant;
028import org.apache.commons.functor.core.NoOp;
029import org.junit.Test;
030
031/**
032 * @version $Revision: 1365377 $ $Date: 2012-07-24 21:59:23 -0300 (Tue, 24 Jul 2012) $
033 */
034public class TestNullaryFunctionNullaryProcedure extends BaseFunctorTest {
035
036    // Functor Testing Framework
037    // ------------------------------------------------------------------------
038
039    @Override
040    protected Object makeFunctor() {
041        return new NullaryFunctionNullaryProcedure(Constant.of("K"));
042    }
043
044    // Tests
045    // ------------------------------------------------------------------------
046
047    @Test
048    public void testRun() throws Exception {
049        class EvaluateCounter implements NullaryFunction<Integer> {
050            int count = 0;
051            public Integer evaluate() { return Integer.valueOf(count++); }
052        }
053        EvaluateCounter counter = new EvaluateCounter();
054        NullaryProcedure p = new NullaryFunctionNullaryProcedure(counter);
055        assertEquals(0,counter.count);
056        p.run();
057        assertEquals(1,counter.count);
058        p.run();
059        assertEquals(2,counter.count);
060    }
061
062    @Test
063    public void testEquals() throws Exception {
064        NullaryProcedure p = new NullaryFunctionNullaryProcedure(Constant.of("K"));
065        assertEquals(p,p);
066        assertObjectsAreEqual(p,new NullaryFunctionNullaryProcedure(Constant.of("K")));
067        assertObjectsAreNotEqual(p,NoOp.INSTANCE);
068        assertObjectsAreNotEqual(p,new NullaryFunctionNullaryProcedure(Constant.of("J")));
069        assertTrue(!p.equals(null));
070    }
071
072    @Test
073    public void testAdaptNull() throws Exception {
074        assertNull(NullaryFunctionNullaryProcedure.adapt(null));
075    }
076
077    @Test
078    public void testAdapt() throws Exception {
079        assertNotNull(NullaryFunctionNullaryProcedure.adapt(Constant.of("K")));
080    }
081}