This repository has been archived on 2025-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
AuD-2021-Exam-Prep/test/aud/exam/prep/tree/RecursiveOrderedBinaryTreeNodeProcessorTest.java

8 lines
262 B
Java
Raw Normal View History

package aud.exam.prep.tree;
public class RecursiveOrderedBinaryTreeNodeProcessorTest extends OrderedBinaryTreeNodeProcessorTest {
public RecursiveOrderedBinaryTreeNodeProcessorTest() {
super(new RecursiveOrderedBinaryTreeNodeProcessor<>());
}
}