mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-07-31 01:15:50 -04:00
25 lines
538 B
Java
25 lines
538 B
Java
package main;
|
|
|
|
import network.encryption.TestEncryption;
|
|
import network.encryption.TestFragmented;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
import resources.TestSortedLinkedList;
|
|
import resources.objects.quadtree.TestQuadTree;
|
|
import resources.server_info.TestObjectDatabase;
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({
|
|
TestEncryption.class,
|
|
TestFragmented.class,
|
|
TestQuadTree.class,
|
|
TestObjectDatabase.class,
|
|
TestSortedLinkedList.class
|
|
})
|
|
public class TestAll {
|
|
|
|
}
|