rename test class (no Jaxen support)

git-svn-id: https://svn.apache.org/repos/asf/xmlbeans/trunk@1864885 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/src/xmlcursor/xpath/complex/checkin/JaxenXPathTests.java b/test/src/xmlcursor/xpath/complex/checkin/XPathTests.java
similarity index 98%
rename from test/src/xmlcursor/xpath/complex/checkin/JaxenXPathTests.java
rename to test/src/xmlcursor/xpath/complex/checkin/XPathTests.java
index 14b64af..95ad5ae 100755
--- a/test/src/xmlcursor/xpath/complex/checkin/JaxenXPathTests.java
+++ b/test/src/xmlcursor/xpath/complex/checkin/XPathTests.java
@@ -25,7 +25,7 @@
 
 import static org.junit.Assert.assertNull;
 
-public class JaxenXPathTests {
+public class XPathTests {
     private final String sXml =
         "<?xml version=\"1.0\"?>" +
         "<doc xmlns:ext=\"http://somebody.elses.extension\">" +
@@ -58,13 +58,9 @@
                 bFail = true;
                 errors.append("**********************Failed at test " + i +
                               "\n  path:" + xpathes[i] + "\n");
-//                if (e.getMessage() == null)
-//                {
                 StringWriter sw = new StringWriter();
                 e.printStackTrace(new PrintWriter(sw));
                 errors.append(sw);
-//                }
-//                else
                 errors.append(e.getMessage());
                 errors.append("\n\n");
             }