fail("CompareTo not working properly for nBestResult");
}
@Test
public void testCompareToDistanceDiff() {
NBestResult r = new NBestResult("res1", 2.0, 4.0, 34.0);
NBestResult r2 = new NBestResult("res1", 2.0, 3.0, 34.0);
if (r.compareTo(r2) != -1)
fail("CompareTo not working properly for nBestResult");
}