Use better JUnit API

This commit is contained in:
Gary Gregory 2024-03-22 16:11:54 -04:00
parent fa72968378
commit 38359a00ad
1 changed files with 3 additions and 3 deletions

View File

@ -801,8 +801,8 @@ public abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes
// }
// assertTrue( values.contains("un"));
// assertTrue( values.contains("uno"));
// assertEquals(false, map.iterator("A").hasNext());
// assertEquals(false, map.iterator("A").hasNext());
// assertFalse(map.iterator("A").hasNext());
// assertFalse(map.iterator("A").hasNext());
// if (!isAddSupported()) {
// return;
// }
@ -810,7 +810,7 @@ public abstract class AbstractMultiValuedMapTest<K, V> extends AbstractObjectTes
// it = map.iterator("A");
// assertTrue( it.hasNext());
// it.next();
// assertEquals(false, it.hasNext());
// assertFalse(it.hasNext());
// }
@Test