public void test_AscendingSubMapEntrySet_pollFirst_startIncluded_endIncluded() {
Set entrySet = navigableMap_startIncluded_endIncluded.entrySet();
if (entrySet instanceof NavigableSet) {
NavigableSet ascendingSubMapEntrySet = (NavigableSet) entrySet;
for (int value = 100; value < 110; value++) {
Entry entry = (Entry) ascendingSubMapEntrySet.pollFirst();
assertEquals(value, entry.getValue());
}
assertTrue(ascendingSubMapEntrySet.isEmpty());
// should return null if the set is empty.
assertNull(ascendingSubMapEntrySet.pollFirst());