Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DMinMaxPriorityQueueTest.java195 assertTrue("Empty heap should be OK", mmHeap.isIntact()); in testHeapIntact()
202 mmHeap.isIntact()); in testHeapIntact()
222 assertTrue(mmHeap.isIntact()); in testHeapIntact()
229 " random mixture of operations", mmHeap.isIntact()); in testHeapIntact()
273 assertTrue("Heap is not intact initally", mmHeap.isIntact()); in testRemove()
277 assertTrue("Heap is not intact after remove()", mmHeap.isIntact()); in testRemove()
282 assertTrue("Heap is not intact after removeAll()", mmHeap.isIntact()); in testRemove()
293 assertTrue("Heap is not intact after remove()", mmHeap.isIntact()); in testContains()
343 assertTrue("State " + Arrays.toString(q.toArray()), q.isIntact()); in testIteratorRegressionChildlessUncle()
357 assertTrue(q.isIntact()); in testIteratorRegressionChildlessUncle()
[all …]
/external/guava/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java473 @VisibleForTesting boolean isIntact() { in isIntact() method in MinMaxPriorityQueue