@Test
public void testScoresString() {
try {
NBestList n = new NBestList();
n.addResult("r1", 2, 2, 2);
n.addResult("r2", 22, 222, 23);
if (!(n.getScoresString().equals("2,22")))
fail("ScoresString() not working as expected!");
}
catch (Exception e) {
fail("ScoresString() not working, due to exceptions: "