Home
last modified time | relevance | path

Searched refs:assertTheCallTookBetween (Results 1 – 1 of 1) sorted by relevance

/external/guava/guava-tests/test/com/google/common/util/concurrent/
DSimpleTimeLimiterTest.java68 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()
170 assertTheCallTookBetween(start, NOT_ENOUGH_MS, DELAY_MS); in testBadMethodWithNotEnoughTime()
173 private static void assertTheCallTookBetween( in assertTheCallTookBetween() method in SimpleTimeLimiterTest