mirror of
https://github.com/ProjectSWGCore/Holocore.git
synced 2026-07-30 00:15:50 -04:00
24 lines
522 B
Java
24 lines
522 B
Java
package resources;
|
|
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Suite;
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
import resources.collections.SWGListTest;
|
|
import resources.objects.quadtree.TestQuadTree;
|
|
import resources.server_info.TestObjectDatabase;
|
|
import resources.services.TestConfig;
|
|
|
|
@RunWith(Suite.class)
|
|
@SuiteClasses({
|
|
SWGListTest.class,
|
|
TestSortedLinkedList.class,
|
|
TestWeatherType.class,
|
|
TestQuadTree.class,
|
|
TestObjectDatabase.class,
|
|
TestConfig.class
|
|
})
|
|
public class TestResources {
|
|
|
|
}
|