1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
<?xml version='1.0'?>
<TestDescriptor xmlns="http://castor.exolab.org/Test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://castor.exolab.org/Test http://castor.exolab.org/Test">
<Name>Test primitive types with default properties</Name>
<Author>Arnaud Blandin</Author>
<Comment>Test the W3C XML Schema primitives types handling in the Source Generator</Comment>
<Comment>
The supported types are:
-string
-boolean
-decimal
-float
-double
-duration
-dateTime
-time
-gYearMonth
-gYear
-gMonthDay
-gDay
-gMonth
-hexBinary
-base64Binary
-anyURI
-QName
</Comment>
<Comment>The facets are not tested in this case and java primitives are used.</Comment>
<Comment>hexBinary and base64Binary are not tested</Comment>
<Category>basic capability</Category>
<SourceGeneratorTest>
<Schema>primitives.xsd</Schema>
<Root_Object random="false" dump="true">TestPrimitives</Root_Object>
<UnitTestCase>
<Name>Test Generation</Name>
<Input>input1.xml</Input>
<GoldFile/> <!-- Suppress XML comparison -->
<Comment>Until dateTime time zone handling is fixed, suppress XML comparison</Comment>
</UnitTestCase>
<UnitTestCase>
<Name>Test Marshaling with the generated Descriptors</Name>
<Input>input1.xml</Input>
<GoldFile/> <!-- Suppress XML comparison -->
<ObjectBuilder>PrimitivesBuilder</ObjectBuilder>
<Comment>Until dateTime time zone handling is fixed, suppress XML comparison</Comment>
</UnitTestCase>
</SourceGeneratorTest>
</TestDescriptor>
|