assertEquals("dennis", memcachedClient.get(key));
CountDownLatch latch = new CountDownLatch(1);
int currentServerCount = memcachedClient.getAvaliableServers().size();
MockErrorCommand errorCommand = null;
if (memcachedClient.getProtocol() == Protocol.Text) {
errorCommand = new MockErrorTextGetOneCommand(key, key.getBytes(),
CommandType.GET_ONE, latch);
} else {
errorCommand = new MockErrorBinaryGetOneCommand(key,
key.getBytes(), CommandType.GET_ONE, latch, OpCode.GET,
false);