summaryrefslogtreecommitdiffstats
path: root/test-runner/src/junit/runner/StandardTestSuiteLoader.java
diff options
context:
space:
mode:
Diffstat (limited to 'test-runner/src/junit/runner/StandardTestSuiteLoader.java')
-rw-r--r--test-runner/src/junit/runner/StandardTestSuiteLoader.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/test-runner/src/junit/runner/StandardTestSuiteLoader.java b/test-runner/src/junit/runner/StandardTestSuiteLoader.java
deleted file mode 100644
index 381e684..0000000
--- a/test-runner/src/junit/runner/StandardTestSuiteLoader.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package junit.runner;
-
-/**
- * The standard test suite loader. It can only load the same class once.
- * {@hide} - Not needed for 1.0 SDK
- */
-public class StandardTestSuiteLoader implements TestSuiteLoader {
- /**
- * Uses the system class loader to load the test class
- */
- public Class load(String suiteClassName) throws ClassNotFoundException {
- return Class.forName(suiteClassName);
- }
- /**
- * Uses the system class loader to load the test class
- */
- public Class reload(Class aClass) throws ClassNotFoundException {
- return aClass;
- }
-}