Searched refs:integerQueue (Results 1 – 2 of 2) sorted by relevance
48 PriorityQueue<Integer> integerQueue = new PriorityQueue<Integer>(); in test_iterator() local51 integerQueue.offer(array[i]); in test_iterator()53 Iterator<Integer> iter = integerQueue.iterator(); in test_iterator()69 PriorityQueue<Integer> integerQueue = new PriorityQueue<Integer>(); in test_iterator_empty() local70 Iterator<Integer> iter = integerQueue.iterator(); in test_iterator_empty()78 iter = integerQueue.iterator(); in test_iterator_empty()91 PriorityQueue<Integer> integerQueue = new PriorityQueue<Integer>(); in test_iterator_outofbound() local92 integerQueue.offer(0); in test_iterator_outofbound()93 Iterator<Integer> iter = integerQueue.iterator(); in test_iterator_outofbound()102 iter = integerQueue.iterator(); in test_iterator_outofbound()[all …]
59 PriorityQueue<Integer> integerQueue = new PriorityQueue<Integer>(list); in test_remove_Ljava_lang_Object_not_exists() local60 assertFalse(integerQueue.remove(111)); in test_remove_Ljava_lang_Object_not_exists()61 assertFalse(integerQueue.remove(null)); in test_remove_Ljava_lang_Object_not_exists()62 assertFalse(integerQueue.remove("")); in test_remove_Ljava_lang_Object_not_exists()