be-graphe/src/test/org/insa/algo/utils/BinarySearchTreeTest.java
2018-03-26 14:21:19 +02:00

15 lines
408 B
Java

package org.insa.algo.utils;
public class BinarySearchTreeTest extends PriorityQueueTest {
@Override
public PriorityQueue<MutableInteger> createQueue() {
return new BinarySearchTree<>();
}
@Override
public PriorityQueue<MutableInteger> createQueue(PriorityQueue<MutableInteger> queue) {
return new BinarySearchTree<>((BinarySearchTree<MutableInteger>) queue);
}
}