/******************************************************************************* * This file is part of OpenNMS(R). * * Copyright (C) 2007-2011 The OpenNMS Group, Inc. * OpenNMS(R) is Copyright (C) 1999-2011 The OpenNMS Group, Inc. * * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc. * * OpenNMS(R) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * OpenNMS(R) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenNMS(R). If not, see: * http://www.gnu.org/licenses/ * * For more information contact: * OpenNMS(R) Licensing <license@opennms.org> * http://www.opennms.org/ * http://www.opennms.com/ *******************************************************************************/ package org.opennms.netmgt.model; import junit.framework.TestCase; public class OnmsLocationMonitorTest extends TestCase { public void testCompareToEqual() { OnmsLocationMonitor o1 = new OnmsLocationMonitor(); o1.setDefinitionName("a"); o1.setId(1); OnmsLocationMonitor o2 = new OnmsLocationMonitor(); o2.setDefinitionName("a"); o2.setId(1); assertEquals("compareTo should return 0 as the two objects are equal", 0, o1.compareTo(o2)); } public void testCompareToFirstHigherId() { OnmsLocationMonitor o1 = new OnmsLocationMonitor(); o1.setDefinitionName("a"); o1.setId(2); OnmsLocationMonitor o2 = new OnmsLocationMonitor(); o2.setDefinitionName("a"); o2.setId(1); assertEquals("compareTo should return 1 as the first object has a higher ID", 1, o1.compareTo(o2)); } public void testCompareToFirstLowerId() { OnmsLocationMonitor o1 = new OnmsLocationMonitor(); o1.setDefinitionName("a"); o1.setId(1); OnmsLocationMonitor o2 = new OnmsLocationMonitor(); o2.setDefinitionName("a"); o2.setId(2); assertEquals("compareTo should return 1 as the first object has a lower ID", -1, o1.compareTo(o2)); } public void testCompareToFirstHigherName() { OnmsLocationMonitor o1 = new OnmsLocationMonitor(); o1.setDefinitionName("b"); o1.setId(1); OnmsLocationMonitor o2 = new OnmsLocationMonitor(); o2.setDefinitionName("a"); o2.setId(1); assertEquals("compareTo should return 1 as the first object has a higher name", 1, o1.compareTo(o2)); } public void testCompareToFirstLowerName() { OnmsLocationMonitor o1 = new OnmsLocationMonitor(); o1.setDefinitionName("a"); o1.setId(1); OnmsLocationMonitor o2 = new OnmsLocationMonitor(); o2.setDefinitionName("b"); o2.setId(1); assertEquals("compareTo should return 1 as the first object has a lower name", -1, o1.compareTo(o2)); } }