rename getKey to getString
This commit is contained in:
@@ -35,14 +35,14 @@ public class UniqueStringIntegerPairsTest {
|
||||
|
||||
usip.putStringAndInteger(first, second);
|
||||
Assertions.assertEquals(second, usip.getInt(first));
|
||||
Assertions.assertEquals(first, usip.getKey(second));
|
||||
Assertions.assertEquals(first, usip.getString(second));
|
||||
}
|
||||
|
||||
{
|
||||
final UniqueStringIntegerPairs usip = new UniqueStringIntegerPairs(database);
|
||||
|
||||
Assertions.assertEquals(second, usip.getInt(first));
|
||||
Assertions.assertEquals(first, usip.getKey(second));
|
||||
Assertions.assertEquals(first, usip.getString(second));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user