use of com.google.appengine.api.memcache.MemcacheServicePb.MemcacheFlushResponse in project appengine-java-standard by GoogleCloudPlatform.
the class MemcacheServiceImplTest method testClearAll.
@Test
public void testClearAll() {
MemcacheFlushRequest request = MemcacheFlushRequest.getDefaultInstance();
MemcacheFlushResponse response = MemcacheFlushResponse.getDefaultInstance();
expectAsyncCall("FlushAll", request, response);
new MemcacheServiceImpl(null).clearAll();
verifyAsyncCall("FlushAll", request);
}
Aggregations