1 61 62 63 package org.jaxen.javabean; 64 65 import junit.framework.Test; 66 import junit.framework.TestCase; 67 import junit.framework.TestSuite; 68 69 78 public class JavaBeanTests extends TestCase { 79 80 81 public JavaBeanTests(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 return result; 91 92 } 93 94 95 } | Popular Tags |