* This is needed for use of the ComparableSnmpObjectId in SortedSets etc.
* @see java.lang.Comparable
*/
public void testCompareTo1()
{
ComparableSnmpObjectId coid = new ComparableSnmpObjectId("1.2.3.4.0");
ComparableSnmpObjectId coid2 = new ComparableSnmpObjectId(".1.2.3.4.0");
int res = coid.compareTo(coid2);
assertEquals(0,res);
}