You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ch...@apache.org on 2005/10/18 13:29:30 UTC

svn commit: r326089 - /webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/utils/ADBPullParserTest.java

Author: chinthaka
Date: Tue Oct 18 04:29:22 2005
New Revision: 326089

URL: http://svn.apache.org/viewcvs?rev=326089&view=rev
Log:
Forgot to add the modified test case

Modified:
    webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/utils/ADBPullParserTest.java

Modified: webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/utils/ADBPullParserTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/utils/ADBPullParserTest.java?rev=326089&r1=326088&r2=326089&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/utils/ADBPullParserTest.java (original)
+++ webservices/axis2/trunk/java/modules/codegen/test/org/apache/axis2/databinding/utils/ADBPullParserTest.java Tue Oct 18 04:29:22 2005
@@ -173,13 +173,13 @@
             nextdummyBean.addAnotherBean();
             propertyList.add(dummyBean);
 
-            propertyList.add(new QName("Dependent"));
+            propertyList.add(new QName("http://whatever.com", "Dependent", "test"));
             dummyBean = new DummyADBBean();
             dummyBean.addAnotherBean();
             propertyList.add(dummyBean);
 
             QName projectQName = new QName("Person");
-            XMLStreamReader pullParser = ADBPullParser.createPullParser(projectQName, propertyList.toArray(), null);
+            XMLStreamReader pullParser = ADBPullParser.createPullParser(projectQName, propertyList.toArray(), null, true);
 
             StringBuffer buff = new StringBuffer();
             while (pullParser.hasNext()) {