String result = String.valueOf(s.size());
assertEquals(expecting, result);
}
@Test public void testToList() throws Exception {
IntervalSet s = IntervalSet.of(20,25);
s.add(50,55);
s.add(5,5);
String expecting = "[5, 20, 21, 22, 23, 24, 25, 50, 51, 52, 53, 54, 55]";
String result = String.valueOf(s.toList());
assertEquals(expecting, result);
}