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