OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RetryRule
(Results
1 - 6
of
6
) sorted by null
/external/mockito/src/test/java/org/mockitoutil/
RetryRule.java
14
public class
RetryRule
implements TestRule {
17
public static
RetryRule
attempts(final int attempts) {
18
return new
RetryRule
(new NumberedAttempts(attempts));
21
private
RetryRule
(TestRule innerRule) {
/cts/tests/autofillservice/src/android/autofillservice/cts/
RetryRuleTest.java
65
final
RetryRule
rule = new
RetryRule
(2);
72
final
RetryRule
rule = new
RetryRule
(2);
84
final
RetryRule
rule = new
RetryRule
(2);
92
final
RetryRule
rule = new
RetryRule
(2);
RetryRule.java
30
public class
RetryRule
implements TestRule {
32
private static final String TAG = "
RetryRule
";
35
public
RetryRule
(int maxAttempts) {
AutoFillServiceTestCase.java
58
public final
RetryRule
mRetryRule = new
RetryRule
(2);
/external/mockito/src/test/java/org/mockitousage/verification/
VerificationAfterDelayTest.java
19
import org.mockitoutil.
RetryRule
;
38
public
RetryRule
retryRule
=
RetryRule
.attempts(4);
VerificationWithTimeoutTest.java
20
import org.mockitoutil.
RetryRule
;
38
public
RetryRule
retryRule
=
RetryRule
.attempts(4);
Completed in 2925 milliseconds