You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlbeans.apache.org by ce...@apache.org on 2005/09/30 01:44:49 UTC

svn commit: r292579 - in /xmlbeans/trunk/test/src/xmlcursor/xquery/checkin: ./ QueryEngineTests.java

Author: cezar
Date: Thu Sep 29 16:44:48 2005
New Revision: 292579

URL: http://svn.apache.org/viewcvs?rev=292579&view=rev
Log:
Contributed by Rajiv Balachandran. Checkintest for NPE on repeated invocations of xquery engine (r292446 )

Added:
    xmlbeans/trunk/test/src/xmlcursor/xquery/checkin/
    xmlbeans/trunk/test/src/xmlcursor/xquery/checkin/QueryEngineTests.java

Added: xmlbeans/trunk/test/src/xmlcursor/xquery/checkin/QueryEngineTests.java
URL: http://svn.apache.org/viewcvs/xmlbeans/trunk/test/src/xmlcursor/xquery/checkin/QueryEngineTests.java?rev=292579&view=auto
==============================================================================
--- xmlbeans/trunk/test/src/xmlcursor/xquery/checkin/QueryEngineTests.java (added)
+++ xmlbeans/trunk/test/src/xmlcursor/xquery/checkin/QueryEngineTests.java Thu Sep 29 16:44:48 2005
@@ -0,0 +1,34 @@
+/*   Copyright 2004 The Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package xmlcursor.xquery.checkin;
+
+import junit.framework.TestCase;
+import org.apache.xmlbeans.XmlObject;
+import org.apache.xmlbeans.XmlInteger;
+
+public class QueryEngineTests extends TestCase
+{
+    // Execute repeated queries to test picking up of the query engine from classpath
+    // This test is following rev 292446 
+    public void testQueryEngineSelection()throws Exception{
+            XmlObject o = XmlObject.Factory.parse("<foo><a><b/></a></foo>");
+            XmlObject[] res = o.execQuery("(//a/b)");
+            res= o.execQuery("(//a/b)");
+            String expectedRes = "<b/>";
+            assertEquals(expectedRes,res[0].xmlText());
+
+        }
+
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlbeans.apache.org
For additional commands, e-mail: commits-help@xmlbeans.apache.org