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