@Test
public void emptyResults() {
// We never create a Results without at least one Range
// This test is only to unit test Results with this to cover the case anyway
final Results results = new Results();
assertFalse(results.hasResults());
assertNull(results.next());
}