Package hivemind.test

Source Code of hivemind.test.TestHiveMindFindLocation

// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed 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 hivemind.test;

import org.apache.hivemind.HiveMind;
import org.apache.hivemind.Locatable;
import org.apache.hivemind.Location;
import org.apache.hivemind.impl.LocationImpl;

/**
* Tests the method {@link org.apache.hivemind.HiveMind#findLocation(Object[])}.
*
* @author Howard Lewis Ship
*
*/
public class TestHiveMindFindLocation extends FrameworkTestCase
{
    public void testEmpty()
    {
        assertNull(HiveMind.findLocation(new Object[] {
        }));
    }

    public void testAllNull()
    {
        assertNull(HiveMind.findLocation(new Object[] { null, null, null }));
    }

    public void testOrdering()
    {
        Location l1 = new LocationImpl(null);
        Location l2 = new LocationImpl(null);

        assertSame(l1, HiveMind.findLocation(new Object[] { l1, l2 }));
    }

    public void testLocatable()
    {
        Location l1 = new LocationImpl(null);
        Locatable l2 = new LocatableFixture(l1);

        assertSame(l1, HiveMind.findLocation(new Object[] { l2 }));
    }

    public void testNullLocatable()
    {
        Location l1 = new LocationImpl(null);
        Locatable l2 = new LocatableFixture(null);
        Locatable l3 = new LocatableFixture(l1);

        assertSame(l1, HiveMind.findLocation(new Object[] { l2, l3 }));
    }

    public void testSkipOther()
    {
        Location l1 = new LocationImpl(null);

        assertSame(l1, HiveMind.findLocation(new Object[] { this, "Hello", l1, "Goodbye" }));
    }

    public void testToLocationStringNull()
    {
        assertEquals("unknown location", HiveMind.getLocationString(null));
    }

}
TOP

Related Classes of hivemind.test.TestHiveMindFindLocation

TOP
Copyright © 2018 www.massapi.com. 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.