[ 
https://issues.apache.org/jira/browse/XMLBEANS-285?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Wing Yew Poon reassigned XMLBEANS-285:
--------------------------------------

    Assignee: Radu Preotiuc-Pietro

> XmlBeans.NO_TYPE initialized not correctly
> ------------------------------------------
>
>                 Key: XMLBEANS-285
>                 URL: https://issues.apache.org/jira/browse/XMLBEANS-285
>             Project: XMLBeans
>          Issue Type: Bug
>          Components: XmlObject
>    Affects Versions: Version 2.2.1
>            Reporter: Valery Gorbunov
>            Assignee: Radu Preotiuc-Pietro
>
> XmlBeans.NO_TYPE initialized not correctly if working with XmbBeans begins 
> with 
> org.apache.xmlbeans.impl.schema.BuiltinSchemaTypeSystem class. 
> Test cases: 
> Correct initialization: 
> package mypackage; 
> import junit.framework.TestCase; 
> import org.apache.xmlbeans.XmlBeans; 
> import org.apache.xmlbeans.impl.schema.BuiltinSchemaTypeSystem; 
> public class XMLTest extends TestCase{ 
> public XMLTest() { 
> super(); 
> } 
> public XMLTest(String name) { 
> super(name); 
> } 
> public void test2(){ 
> assertNotNull(XmlBeans.NO_TYPE); 
> assertNotNull(BuiltinSchemaTypeSystem.ST_NO_TYPE); 
> } 
> } 
> Incorrect initialization. 
> package mypackage; 
> import junit.framework.TestCase; 
> import org.apache.xmlbeans.XmlBeans; 
> import org.apache.xmlbeans.impl.schema.BuiltinSchemaTypeSystem; 
> public class XMLTestWithFail extends TestCase{ 
> public XMLTestWithFail() { 
> super(); 
> } 
> public XMLTestWithFail(String name) { 
> super(name); 
> } 
> public void test(){ 
> BuiltinSchemaTypeSystem.get(); 
> assertNotNull(XmlBeans.NO_TYPE); 
> } 
> } 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
For additional commands, e-mail: dev-h...@xmlbeans.apache.org

Reply via email to