/**
* Test trove4j's implementation
*/
@Test
public void troveLongMap() {
TLongLongHashMap map = new TLongLongHashMap(values.length * 3 / 2);
for (int i = 0; i < values.length; ++i) {
map.put(values[i], values[values.length - i - 1]);
}
for (int i = 0; i < values.length; ++i) {
assertTrue(map.containsKey(values[i]));
}
for (int i = 0; i < values.length; ++i) {
map.remove(values[i]);
}
}