You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2009/05/04 21:47:41 UTC

svn commit: r771416 - in /cxf/trunk: parent/pom.xml systests/src/test/java/org/apache/cxf/systest/type_test/AbstractTypeTestClient.java

Author: dkulp
Date: Mon May  4 19:47:40 2009
New Revision: 771416

URL: http://svn.apache.org/viewvc?rev=771416&view=rev
Log:
Update jetty version, add a test.

Modified:
    cxf/trunk/parent/pom.xml
    cxf/trunk/systests/src/test/java/org/apache/cxf/systest/type_test/AbstractTypeTestClient.java

Modified: cxf/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/cxf/trunk/parent/pom.xml?rev=771416&r1=771415&r2=771416&view=diff
==============================================================================
--- cxf/trunk/parent/pom.xml (original)
+++ cxf/trunk/parent/pom.xml Mon May  4 19:47:40 2009
@@ -53,7 +53,7 @@
         <jaxb.impl.version>2.1.9</jaxb.impl.version>
         <jaxb.xjc.version>2.1.9</jaxb.xjc.version>
         <jdom.version>1.0</jdom.version>
-        <jetty.version>6.1.16</jetty.version>
+        <jetty.version>6.1.17</jetty.version>
         <msv.version>2009.1-SNAPSHOT</msv.version>
         <rhino.version>1.7R1</rhino.version>
         <saaj.version>1.3</saaj.version>

Modified: cxf/trunk/systests/src/test/java/org/apache/cxf/systest/type_test/AbstractTypeTestClient.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/src/test/java/org/apache/cxf/systest/type_test/AbstractTypeTestClient.java?rev=771416&r1=771415&r2=771416&view=diff
==============================================================================
--- cxf/trunk/systests/src/test/java/org/apache/cxf/systest/type_test/AbstractTypeTestClient.java (original)
+++ cxf/trunk/systests/src/test/java/org/apache/cxf/systest/type_test/AbstractTypeTestClient.java Mon May  4 19:47:40 2009
@@ -544,8 +544,11 @@
             buffer2.append((char)('A' + (x % 26)));
         }
 
-        String valueSets[][] = {{"hello", "world"}, {"is pi > 3 ?", " is pi < 4\\\""},
-                                {"<illegal_tag/>", ""}, {buffer.toString(), buffer2.toString()}};
+        String valueSets[][] = {{"hello", "world"},
+                                {"is pi > 3 ?", " is pi < 4\\\""},
+                                {"<illegal_tag/>", ""},
+                                {buffer.toString(), buffer2.toString()},
+                                {"jon&marry", "marry&john"}};
 
         for (int i = 0; i < valueSets.length; i++) {
             String x = valueSets[i][0];