Searched refs:mQueueUnderTest (Results 1 – 1 of 1) sorted by relevance
39 private LongArrayQueue mQueueUnderTest; field in LongArrayQueueTest43 mQueueUnderTest = new LongArrayQueue(); in setUp()49 mQueueUnderTest.removeFirst(); in removeFirstOnEmptyQueue()53 mQueueUnderTest.addLast(5); in removeFirstOnEmptyQueue()54 mQueueUnderTest.removeFirst(); in removeFirstOnEmptyQueue()56 mQueueUnderTest.removeFirst(); in removeFirstOnEmptyQueue()64 mQueueUnderTest.addLast(1); in addLastRemoveFirstFifo()65 assertEquals(1, mQueueUnderTest.removeFirst()); in addLastRemoveFirstFifo()69 mQueueUnderTest.addLast(i); in addLastRemoveFirstFifo()71 assertEquals(removes++, mQueueUnderTest.removeFirst()); in addLastRemoveFirstFifo()[all …]