> + > + replay(command); > + replay(request); > + replay(response); > + replay(cache); > + > + RetryOnRenew retry = new RetryOnRenew(cache); > + > + for(int n=0; n<4; n++) > + assertTrue(retry.shouldRetryRequest(command, response)); > + > + assertFalse(retry.shouldRetryRequest(command, response)); > + > + verify(command); > + verify(response); > + verify(cache);
Similarly, could be ``` verify(command, response, cache) ``` --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/104/files#r6351789
