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/10 22:17:15 UTC

svn commit: r603053 - /commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java

Author: mbenson
Date: Mon Dec 10 13:17:14 2007
New Revision: 603053

URL: http://svn.apache.org/viewvc?rev=603053&view=rev
Log:
values

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

Modified: commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java
URL: http://svn.apache.org/viewvc/commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java?rev=603053&r1=603052&r2=603053&view=diff
==============================================================================
--- commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java (original)
+++ commons/proper/jxpath/trunk/src/test/org/apache/commons/jxpath/BasicNodeSetTest.java Mon Dec 10 13:17:14 2007
@@ -89,6 +89,8 @@
         addPointers("/integers");
         assertEquals(nodeSet.getPointers().toString(), list("/integers[1]",
                 "/integers[2]", "/integers[3]", "/integers[4]").toString());
+        assertEquals(list(new Integer(1), new Integer(2), new Integer(3), new Integer(4)),
+                nodeSet.getValues());
     }
 
     /**