You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2006/04/10 08:13:42 UTC

svn commit: r392896 - in /xerces/java/trunk/tests/schema/config: RootSimpleTypeDefinitionTest.java simpleType.xml

Author: mrglavas
Date: Sun Apr  9 23:13:41 2006
New Revision: 392896

URL: http://svn.apache.org/viewcvs?rev=392896&view=rev
Log:
Update SVN properties.

Modified:
    xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java   (contents, props changed)
    xerces/java/trunk/tests/schema/config/simpleType.xml   (contents, props changed)

Modified: xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java
URL: http://svn.apache.org/viewcvs/xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java?rev=392896&r1=392895&r2=392896&view=diff
==============================================================================
--- xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java (original)
+++ xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java Sun Apr  9 23:13:41 2006
@@ -1,102 +1,102 @@
-/*
- * Copyright 2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package schema.config;
-
-import javax.xml.XMLConstants;
-import javax.xml.namespace.QName;
-
-import junit.framework.Assert;
-
-import org.apache.xerces.xs.ItemPSVI;
-import org.xml.sax.SAXException;
-
-/**
- * @author Peter McCracken, IBM
- * @version $Id: RootTypeDefinitionTest.java 381005 2006-02-25 22:14:10Z mrglavas $
- */
-public class RootSimpleTypeDefinitionTest extends BaseTest {
-    
-    private QName typeString;
-    private QName typeNonNegInt;
-    
-    private final static String INVALID_TYPE_ERROR = "cvc-type.3.1.3";
-    private final static String MININCLUSIVE_DERIVATION_ERROR = "cvc-minInclusive-valid";
-    
-    public static void main(String[] args) {
-        junit.textui.TestRunner.run(RootSimpleTypeDefinitionTest.class);
-    }
-    
-    protected String getXMLDocument() {
-        return "simpleType.xml";
-    }
-    
-    protected String getSchemaFile() {
-        return "base.xsd";
-    }
-    
-    protected String[] getRelevantErrorIDs() {
-        return new String[] { INVALID_TYPE_ERROR, MININCLUSIVE_DERIVATION_ERROR };
-    }
-    
-    public RootSimpleTypeDefinitionTest(String name) {
-        super(name);
-        typeString = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "string", "xsd");
-        typeNonNegInt = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "nonNegativeInteger", "xsd");
-    }
-    
-    public void testSettingSimpleType() throws Exception {
-        try {
-            fValidator.setProperty(ROOT_TYPE, typeString);
-        } catch (SAXException e1) {
-            Assert.fail("Problem setting property: " + e1.getMessage());
-        }
-        
-        try {
-            validateDocument();
-        } catch (Exception e) {
-            Assert.fail("Validation failed: " + e.getMessage());
-        }
-        
-        assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
-        assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
-                .getValidationAttempted());
-        assertElementNull(fRootNode.getElementDeclaration());
-        assertTypeName("string", fRootNode.getTypeDefinition().getName());
-    }
-    
-    public void testSettingInvalidSimpleType() throws Exception {
-        try {
-            fValidator.setProperty(ROOT_TYPE, typeNonNegInt);
-        } catch (SAXException e1) {
-            Assert.fail("Problem setting property: " + e1.getMessage());
-        }
-        
-        try {
-            validateDocument();
-        } catch (Exception e) {
-            Assert.fail("Validation failed: " + e.getMessage());
-        }
-        
-        assertError(INVALID_TYPE_ERROR);
-        assertError(MININCLUSIVE_DERIVATION_ERROR);
-        assertValidity(ItemPSVI.VALIDITY_INVALID, fRootNode.getValidity());
-        assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
-                .getValidationAttempted());
-        assertElementNull(fRootNode.getElementDeclaration());
-        assertTypeName("nonNegativeInteger", fRootNode.getTypeDefinition().getName());
-    }
-}
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package schema.config;
+
+import javax.xml.XMLConstants;
+import javax.xml.namespace.QName;
+
+import junit.framework.Assert;
+
+import org.apache.xerces.xs.ItemPSVI;
+import org.xml.sax.SAXException;
+
+/**
+ * @author Peter McCracken, IBM
+ * @version $Id$
+ */
+public class RootSimpleTypeDefinitionTest extends BaseTest {
+    
+    private QName typeString;
+    private QName typeNonNegInt;
+    
+    private final static String INVALID_TYPE_ERROR = "cvc-type.3.1.3";
+    private final static String MININCLUSIVE_DERIVATION_ERROR = "cvc-minInclusive-valid";
+    
+    public static void main(String[] args) {
+        junit.textui.TestRunner.run(RootSimpleTypeDefinitionTest.class);
+    }
+    
+    protected String getXMLDocument() {
+        return "simpleType.xml";
+    }
+    
+    protected String getSchemaFile() {
+        return "base.xsd";
+    }
+    
+    protected String[] getRelevantErrorIDs() {
+        return new String[] { INVALID_TYPE_ERROR, MININCLUSIVE_DERIVATION_ERROR };
+    }
+    
+    public RootSimpleTypeDefinitionTest(String name) {
+        super(name);
+        typeString = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "string", "xsd");
+        typeNonNegInt = new QName(XMLConstants.W3C_XML_SCHEMA_NS_URI, "nonNegativeInteger", "xsd");
+    }
+    
+    public void testSettingSimpleType() throws Exception {
+        try {
+            fValidator.setProperty(ROOT_TYPE, typeString);
+        } catch (SAXException e1) {
+            Assert.fail("Problem setting property: " + e1.getMessage());
+        }
+        
+        try {
+            validateDocument();
+        } catch (Exception e) {
+            Assert.fail("Validation failed: " + e.getMessage());
+        }
+        
+        assertValidity(ItemPSVI.VALIDITY_VALID, fRootNode.getValidity());
+        assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
+                .getValidationAttempted());
+        assertElementNull(fRootNode.getElementDeclaration());
+        assertTypeName("string", fRootNode.getTypeDefinition().getName());
+    }
+    
+    public void testSettingInvalidSimpleType() throws Exception {
+        try {
+            fValidator.setProperty(ROOT_TYPE, typeNonNegInt);
+        } catch (SAXException e1) {
+            Assert.fail("Problem setting property: " + e1.getMessage());
+        }
+        
+        try {
+            validateDocument();
+        } catch (Exception e) {
+            Assert.fail("Validation failed: " + e.getMessage());
+        }
+        
+        assertError(INVALID_TYPE_ERROR);
+        assertError(MININCLUSIVE_DERIVATION_ERROR);
+        assertValidity(ItemPSVI.VALIDITY_INVALID, fRootNode.getValidity());
+        assertValidationAttempted(ItemPSVI.VALIDATION_FULL, fRootNode
+                .getValidationAttempted());
+        assertElementNull(fRootNode.getElementDeclaration());
+        assertTypeName("nonNegativeInteger", fRootNode.getTypeDefinition().getName());
+    }
+}

Propchange: xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/java/trunk/tests/schema/config/RootSimpleTypeDefinitionTest.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xerces/java/trunk/tests/schema/config/simpleType.xml
URL: http://svn.apache.org/viewcvs/xerces/java/trunk/tests/schema/config/simpleType.xml?rev=392896&r1=392895&r2=392896&view=diff
==============================================================================
--- xerces/java/trunk/tests/schema/config/simpleType.xml (original)
+++ xerces/java/trunk/tests/schema/config/simpleType.xml Sun Apr  9 23:13:41 2006
@@ -1,2 +1,2 @@
-<?xml version="1.0"?>
+<?xml version="1.0"?>
 <S>-12345</S>

Propchange: xerces/java/trunk/tests/schema/config/simpleType.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/java/trunk/tests/schema/config/simpleType.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org