Skip to content

Commit

Permalink
Use better JUnit API
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Mar 22, 2024
1 parent fa72968 commit 38359a0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -801,16 +801,16 @@ public void testFullMapCompatibility() throws Exception {
// }
// 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;
// }
// map.put((K) "A", (V) "AA");
// it = map.iterator("A");
// assertTrue( it.hasNext());
// it.next();
// assertEquals(false, it.hasNext());
// assertFalse(it.hasNext());
// }

@Test
Expand Down

0 comments on commit 38359a0

Please sign in to comment.