Skip to content

Commit

Permalink
Test setting non string key
Browse files Browse the repository at this point in the history
  • Loading branch information
virustotalop committed Apr 29, 2023
1 parent 8df46ed commit 10f8863
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,10 @@ public void testIntegerKey() {
public void testGetKeys() {
assertTrue(config.getKeys().size() > 0);
}

@Test
public void testSetKey() {
config.set(123, 124);
assertTrue(124 == config.getInteger(123));
}
}

0 comments on commit 10f8863

Please sign in to comment.