You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2007/12/05 17:07:36 UTC

svn commit: r601385 - /commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/JXPathTestSuite.java

Author: mbenson
Date: Wed Dec  5 08:07:35 2007
New Revision: 601385

URL: http://svn.apache.org/viewvc?rev=601385&view=rev
Log:
missing tests from suite

Modified:
    commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/JXPathTestSuite.java

Modified: commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/JXPathTestSuite.java
URL: http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/JXPathTestSuite.java?rev=601385&r1=601384&r2=601385&view=diff
==============================================================================
--- commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/JXPathTestSuite.java (original)
+++ commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/JXPathTestSuite.java Wed Dec  5 08:07:35 2007
@@ -22,6 +22,7 @@
 import junit.textui.TestRunner;
 
 import org.apache.commons.jxpath.ri.JXPathCompiledExpressionTest;
+import org.apache.commons.jxpath.ri.StressTest;
 import org.apache.commons.jxpath.ri.axes.RecursiveAxesTest;
 import org.apache.commons.jxpath.ri.axes.SimplePathInterpreterTest;
 import org.apache.commons.jxpath.ri.compiler.ContextDependencyTest;
@@ -34,6 +35,7 @@
 import org.apache.commons.jxpath.ri.model.MixedModelTest;
 import org.apache.commons.jxpath.ri.model.XMLPreserveSpaceTest;
 import org.apache.commons.jxpath.ri.model.XMLSpaceTest;
+import org.apache.commons.jxpath.ri.model.beans.BadlyImplementedFactoryTest;
 import org.apache.commons.jxpath.ri.model.beans.BeanModelTest;
 import org.apache.commons.jxpath.ri.model.container.ContainerModelTest;
 import org.apache.commons.jxpath.ri.model.dom.DOMModelTest;
@@ -78,6 +80,7 @@
     public static Test suite() {
         TestSuite suite = new TestSuite();
         suite.addTestSuite(JXPathCompiledExpressionTest.class);
+        suite.addTestSuite(StressTest.class);
         suite.addTestSuite(SimplePathInterpreterTest.class);
         suite.addTestSuite(ContextDependencyTest.class);
         suite.addTestSuite(CoreFunctionTest.class);
@@ -97,6 +100,7 @@
         suite.addTestSuite(XMLSpaceTest.class);
         suite.addTestSuite(XMLPreserveSpaceTest.class);
         suite.addTestSuite(ExternalXMLNamespaceTest.class);
+        suite.addTestSuite(BadlyImplementedFactoryTest.class);
         return suite;
     }
 }