Searched refs:testCache (Results 1 – 2 of 2) sorted by relevance
107 IpcDataCache<Integer, Boolean> testCache = in testBasicCache() local112 testCache.testPropertyName(); in testBasicCache()115 assertEquals(tester.value(3), testCache.query(3)); in testBasicCache()117 assertEquals(tester.value(3), testCache.query(3)); in testBasicCache()119 testCache.invalidateCache(); in testBasicCache()120 assertEquals(tester.value(3), testCache.query(3)); in testBasicCache()122 assertEquals(tester.value(5), testCache.query(5)); in testBasicCache()124 assertEquals(tester.value(5), testCache.query(5)); in testBasicCache()126 assertEquals(tester.value(3), testCache.query(3)); in testBasicCache()130 testCache.invalidateCache(); in testBasicCache()[all …]
207 public void testCache() throws Exception { in testCache() method in StorageHostTest