Searched refs:DELAY_MS (Results 1 – 1 of 1) sorted by relevance
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | SimpleTimeLimiterTest.java | 33 private static final int DELAY_MS = 50; field in SimpleTimeLimiterTest 43 TimeUnit.MILLISECONDS.sleep(DELAY_MS); in someGoodStaticMethod() 49 TimeUnit.MILLISECONDS.sleep(DELAY_MS); in someBadStaticMethod() 68 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS); in testGoodCallableWithEnoughTime() 84 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS); in testGoodCallableWithNotEnoughTime() 100 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS); in testBadCallableWithEnoughTime() 116 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS); in testBadCallableWithNotEnoughTime() 125 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS); in testGoodMethodWithEnoughTime() 139 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS); in testGoodMethodWithNotEnoughTime() 157 assertTheCallTookBetween(start, DELAY_MS, ENOUGH_MS); in testBadMethodWithEnoughTime() [all …]
|