[jboss-cvs] JBossAS SVN: r64967 - in trunk/testsuite/src: resources/org/jboss/test/xml and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 30 09:53:59 EDT 2007


Author: alex.loubyansky at jboss.com
Date: 2007-08-30 09:53:59 -0400 (Thu, 30 Aug 2007)
New Revision: 64967

Added:
   trunk/testsuite/src/resources/org/jboss/test/xml/SchemaBindingInitializerUnitTestCaseContainer.xsd
Modified:
   trunk/testsuite/src/main/org/jboss/test/xml/SingletonSchemaBindingResolverUnitTestCase.java
Log:
JBAS-4643

Modified: trunk/testsuite/src/main/org/jboss/test/xml/SingletonSchemaBindingResolverUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/xml/SingletonSchemaBindingResolverUnitTestCase.java	2007-08-30 12:45:07 UTC (rev 64966)
+++ trunk/testsuite/src/main/org/jboss/test/xml/SingletonSchemaBindingResolverUnitTestCase.java	2007-08-30 13:53:59 UTC (rev 64967)
@@ -60,7 +60,7 @@
 
    protected void configureLogging()
    {
-      enableTrace("org.jboss.test.xml");
+      //enableTrace("org.jboss.test.xml");
    }
 
    /**

Added: trunk/testsuite/src/resources/org/jboss/test/xml/SchemaBindingInitializerUnitTestCaseContainer.xsd
===================================================================
--- trunk/testsuite/src/resources/org/jboss/test/xml/SchemaBindingInitializerUnitTestCaseContainer.xsd	                        (rev 0)
+++ trunk/testsuite/src/resources/org/jboss/test/xml/SchemaBindingInitializerUnitTestCaseContainer.xsd	2007-08-30 13:53:59 UTC (rev 64967)
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+        xmlns="http://www.w3.org/2001/XMLSchema"
+        targetNamespace="dummy://www.jboss.org/container"
+        elementFormDefault="qualified"
+        attributeFormDefault="unqualified"
+        version="1.0"
+>
+   <element name="containerStrict">
+      <complexType>
+         <sequence>
+            <xsd:any namespace="##other" processContents="strict"/>
+          </sequence>
+      </complexType>
+   </element>
+
+   <element name="containerLax">
+      <complexType>
+         <sequence>
+            <xsd:any namespace="##other" processContents="lax"/>
+          </sequence>
+      </complexType>
+   </element>
+
+   <element name="containerSkip">
+      <complexType>
+         <sequence>
+            <xsd:any namespace="##other" processContents="skip"/>
+          </sequence>
+      </complexType>
+   </element>
+
+</schema>




More information about the jboss-cvs-commits mailing list