AuD
Lecture 'Algorithmen und Datenstrukturen' (code examples)
RunTests.java
Go to the documentation of this file.
1package aud.test;
2
3import org.junit.runner.*;
4import org.junit.runners.*;
5
6@RunWith(Suite.class)
7@Suite.SuiteClasses(
8 { VectorTest.class,
9 SListTest.class,
10 DListTest.class,
11 StackTest.class,
12 QueueTest.class,
13 BinaryTreeTest.class,
14 BinarySearchTreeTest.class,
15 AVLTreeTest.class,
16 A234TreeTest.class,
17 RedBlackTreeTest.class,
18 BTreeTest.class,
19 }
20)
21public class RunTests {
22}