public void testMapEvictAll() throws IOException {
final IMap map = getMap();
for (int i = 0; i < 1000; i++) {
map.put(i, i);
}
MapEvictAllRequest request = new MapEvictAllRequest(mapName);
final SimpleClient client = getClient();
client.send(request);
client.receive();
assertEquals(0, map.size());