Author: thilina
Date: Fri Oct  6 12:24:16 2006
New Revision: 453734

URL: http://svn.apache.org/viewvc?view=rev&rev=453734
Log:
Fixing the broken build... 
I checked the build on Maven 1.x and did not notice the build break before 
commiting... Apologies for that...

Corrected the behaviour of test cases..

Modified:
    
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/AttributeGroupTest.java
    
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentExtensionTest.java
    
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentRestrictionTest.java
    
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/attributegroup.xsd
    
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/screstriction.xsd
    
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/simplecontentextension.xsd

Modified: 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/AttributeGroupTest.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/AttributeGroupTest.java?view=diff&rev=453734&r1=453733&r2=453734
==============================================================================
--- 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/AttributeGroupTest.java
 (original)
+++ 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/AttributeGroupTest.java
 Fri Oct  6 12:24:16 2006
@@ -53,7 +53,8 @@
          <schema xmlns="http://www.w3.org/2001/XMLSchema";
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema";
                  xmlns:tns="http://soapinterop.org/types";
-                 targetNamespace="http://soapinterop.org/types";>
+                 targetNamespace="http://soapinterop.org/types";
+                 attributeFormDefault="qualified" >
   
            <attributeGroup name="department">
              <attribute name="name" type="string"/>

Modified: 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentExtensionTest.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentExtensionTest.java?view=diff&rev=453734&r1=453733&r2=453734
==============================================================================
--- 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentExtensionTest.java
 (original)
+++ 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentExtensionTest.java
 Fri Oct  6 12:24:16 2006
@@ -53,7 +53,8 @@
          <schema xmlns="http://www.w3.org/2001/XMLSchema";
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema";
                  xmlns:tns="http://soapinterop.org/types";
-                 targetNamespace="http://soapinterop.org/types";>
+                 targetNamespace="http://soapinterop.org/types";
+                 attributeFormDefault="qualified">
   
            <element name="height">
              <complexType>

Modified: 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentRestrictionTest.java
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentRestrictionTest.java?view=diff&rev=453734&r1=453733&r2=453734
==============================================================================
--- 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentRestrictionTest.java
 (original)
+++ 
webservices/commons/trunk/modules/XmlSchema/src/test/java/tests/SimpleContentRestrictionTest.java
 Fri Oct  6 12:24:16 2006
@@ -52,7 +52,8 @@
          <schema xmlns="http://www.w3.org/2001/XMLSchema";
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema";
                  xmlns:tns="http://soapinterop.org/types";
-                 targetNamespace="http://soapinterop.org/types";>
+                 targetNamespace="http://soapinterop.org/types";
+                 attributeFormDefault="qualified">
   
            <simpleType name="drinksize">
              <restriction base="string">

Modified: 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/attributegroup.xsd
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/attributegroup.xsd?view=diff&rev=453734&r1=453733&r2=453734
==============================================================================
--- 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/attributegroup.xsd
 (original)
+++ 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/attributegroup.xsd
 Fri Oct  6 12:24:16 2006
@@ -18,7 +18,8 @@
 <schema xmlns="http://www.w3.org/2001/XMLSchema";
         xmlns:xsd="http://www.w3.org/2001/XMLSchema";
         xmlns:tns="http://soapinterop.org/types";
-        targetNamespace="http://soapinterop.org/types";>
+        targetNamespace="http://soapinterop.org/types";
+        attributeFormDefault="qualified">
   
   <attributeGroup name="department">
     <attribute name="name" type="string"/>

Modified: 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/screstriction.xsd
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/screstriction.xsd?view=diff&rev=453734&r1=453733&r2=453734
==============================================================================
--- 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/screstriction.xsd
 (original)
+++ 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/screstriction.xsd
 Fri Oct  6 12:24:16 2006
@@ -18,7 +18,8 @@
 <schema xmlns="http://www.w3.org/2001/XMLSchema";
         xmlns:xsd="http://www.w3.org/2001/XMLSchema";
         xmlns:tns="http://soapinterop.org/types";
-        targetNamespace="http://soapinterop.org/types";>
+        targetNamespace="http://soapinterop.org/types";
+        attributeFormDefault="qualified">
   
   <simpleType name="drinksize">
     <restriction base="string">

Modified: 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/simplecontentextension.xsd
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/simplecontentextension.xsd?view=diff&rev=453734&r1=453733&r2=453734
==============================================================================
--- 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/simplecontentextension.xsd
 (original)
+++ 
webservices/commons/trunk/modules/XmlSchema/src/test/test-resources/simplecontentextension.xsd
 Fri Oct  6 12:24:16 2006
@@ -18,7 +18,8 @@
 <schema xmlns="http://www.w3.org/2001/XMLSchema";
         xmlns:xsd="http://www.w3.org/2001/XMLSchema";
         xmlns:tns="http://soapinterop.org/types";
-        targetNamespace="http://soapinterop.org/types";>
+        targetNamespace="http://soapinterop.org/types";
+        attributeFormDefault="qualified">
   
   <element name="height">
     <complexType>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to