1 61 62 63 package org.jaxen.jdom; 64 65 import junit.framework.Test; 66 import junit.framework.TestCase; 67 import junit.framework.TestSuite; 68 69 78 public class JDOMTests extends TestCase { 79 80 81 public JDOMTests(String name) { 82 super(name); 83 } 84 85 86 public static Test suite() { 87 88 TestSuite result = new TestSuite(); 89 result.addTest(new TestSuite(DocumentNavigatorTest.class)); 90 result.addTest(new TestSuite(XPathTest.class)); 91 return result; 92 93 } 94 95 96 } | Popular Tags |