diff options
author | Jesse Wilson <jessewilson@google.com> | 2010-03-17 14:52:33 -0700 |
---|---|---|
committer | Jesse Wilson <jessewilson@google.com> | 2010-03-17 14:52:33 -0700 |
commit | da80cada6bccc7263049a59a23f5ed27f97c27e3 (patch) | |
tree | 58c15c7a66033e1453ffcd2de2b17751aad9c664 /xml/src/test | |
parent | 4bdcd19b8a1f6edf3fa7b8a05d296c08e5a84896 (diff) | |
download | libcore-da80cada6bccc7263049a59a23f5ed27f97c27e3.zip libcore-da80cada6bccc7263049a59a23f5ed27f97c27e3.tar.gz libcore-da80cada6bccc7263049a59a23f5ed27f97c27e3.tar.bz2 |
Fixing an import of a JUnit class that isn't available in dalvik-dev.
Diffstat (limited to 'xml/src/test')
-rw-r--r-- | xml/src/test/java/org/apache/harmony/xml/JaxenXPathTestSuite.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/xml/src/test/java/org/apache/harmony/xml/JaxenXPathTestSuite.java b/xml/src/test/java/org/apache/harmony/xml/JaxenXPathTestSuite.java index e752fc0..0c24fac 100644 --- a/xml/src/test/java/org/apache/harmony/xml/JaxenXPathTestSuite.java +++ b/xml/src/test/java/org/apache/harmony/xml/JaxenXPathTestSuite.java @@ -20,7 +20,6 @@ import junit.framework.AssertionFailedError; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; -import junit.textui.TestRunner; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; @@ -57,16 +56,6 @@ public class JaxenXPathTestSuite { private static final File DEFAULT_JAXEN_HOME = new File("/home/dalvik-prebuild/jaxen"); - public static void main(String[] args) throws Exception { - if (args.length != 1) { - System.out.println("Usage: JaxenXPathTestSuite <jaxen-home>"); - return; - } - - File jaxenHome = new File(args[0]); - TestRunner.run(suite(jaxenHome)); - } - public static Test suite() throws Exception { return suite(DEFAULT_JAXEN_HOME); } |