ChangeLog 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. 2006-12-04 Atsushi Enomoto <[email protected]>
  2. * XmlSerializerTests.cs :
  3. added base64 tests which is similar to hexBinary.
  4. 2006-12-03 Gert Driesen <[email protected]>
  5. * XmlSerializerTests.cs: Undo some of Hagit's code formatting changes.
  6. 2006-12-03 Gert Driesen <[email protected]>
  7. * XmlSerializerTests.cs: Only compile generic tests on 2.0 profile.
  8. Fixes build.
  9. * DeserializeTests.cs: Same.
  10. * XmlSerializerTestClasses.cs: Same.
  11. 2006-12-03 Gert Driesen <[email protected]>
  12. * XmlSchemaExporterTests.cs: Added tests for (part of) bug #78214.
  13. 2006-12-03 Hagit Yidov <[email protected]>
  14. * XmlSerializerTests.cs : added tests for serialization of generic types.
  15. * DeserializeTests.cs : added tests for deserialization of generic types.
  16. * XmlSerializerTestClasses.cs : added classes for tests which use generic types.
  17. 2006-12-01 Atsushi Enomoto <[email protected]>
  18. * XmlSerializerTests.cs : added tests for XmlArrayAttribute support.
  19. 2006-11-22 Atsushi Enomoto <[email protected]>
  20. * XmlSerializerTests.cs : added test for hexBinary.
  21. 2006-11-22 Atsushi Enomoto <[email protected]>
  22. * XmlReflectionImporterTests.cs : added test for class that contains
  23. nullable value type field whose XmlElementAttribute IsNullable.
  24. 2006-11-20 Atsushi Enomoto <[email protected]>
  25. * XmlSerializerTests.cs : added test for nullable type.
  26. 2006-11-17 Atsushi Enomoto <[email protected]>
  27. * XmlSerializerTests.cs : test for basic generic type support with
  28. code generation.
  29. 2006-11-14 Atsushi Enomoto <[email protected]>
  30. * XmlSerializerImplementationTests.cs :
  31. another custom implementation case.
  32. 2006-11-10 Atsushi Enomoto <[email protected]>
  33. * XmlSchemaExporterTests.cs :
  34. fixed almost all test cases which expected totally wrong schemas.
  35. Schema elements are all nillable unless it is of value type.
  36. 2006-11-09 Atsushi Enomoto <[email protected]>
  37. * XmlSchemaImporterTests.cs :
  38. added DefaultTypeTopLevelElementImportsAllComplexTypes().
  39. 2006-11-09 Atsushi Enomoto <[email protected]>
  40. * XmlSchemaImporterTests.cs :
  41. added ImportComplexDerivationByExtension().
  42. 2006-11-08 Atsushi Enomoto <[email protected]>
  43. * XmlSchemaImporterTests.cs :
  44. added AnyTypeTopLevelElementImportsAllComplexTypes().
  45. 2006-11-08 Atsushi Enomoto <[email protected]>
  46. * XmlSchemaImporterTests.cs : added ImportTypeMapping() test for
  47. nonexistent name.
  48. 2006-11-02 Atsushi Enomoto <[email protected]>
  49. * CodeIdentifiersTests.cs : new test.
  50. 2006-11-01 Atsushi Enomoto <[email protected]>
  51. * XmlSerializerImplementationTests.cs : new testfixture.
  52. 2006-10-10 Gert Driesen <[email protected]>
  53. * XmlSerializerTests.cs: Added a few tests. Fixed coding style.
  54. 2006-10-08 Gert Driesen <[email protected]>
  55. * DeserializeTest.cs: Added several tests.
  56. * XmlSerializerTestClasses.cs: Added test classes for encoded SOAP.
  57. * XmlSerializerTests.cs: Added new tests and fixed existing test.
  58. * XmlReflectionImporterTests.cs: Added test for invalid default
  59. values.
  60. * SoapReflectionImporterTests.cs: Fixed numbering of tests.
  61. 2006-10-01 Gert Driesen <[email protected]>
  62. * SoapReflectionImporterTests.cs: Added tests for bug #78206.
  63. 2006-05-30 Atsushi Enomoto <[email protected]>
  64. * XmlSerializerTests.cs : added tailored version of bug #78536 test.
  65. 2006-05-15 Gert Driesen <[email protected]>
  66. * XmlCodeExporterTests.cs: Added tests for arrays. Fixed usage of
  67. XmlRootAttribute in tests.
  68. 2006-04-26 Gert Driesen <[email protected]>
  69. * SoapSchemaExporterTests.cs: Sync expected results with changes to
  70. test classes.
  71. * XmlCodeExporterTests.cs: Same.
  72. 2006-04-26 Gert Driesen <[email protected]>
  73. * DeserializeTests.cs: Improved TestDeserialize_Enum test for
  74. bug #78204.
  75. 2006-04-26 Gert Driesen <[email protected]>
  76. * SoapAttributesTests.cs: Added tests for bug #78205.
  77. * XmlSerializerTestClasses.cs: Added test classes and improved existing
  78. classes for usage in upcoming bug reports.
  79. 2006-04-24 Gert Driesen <[email protected]>
  80. * XmlSchemaExporterTests.cs: Enabled tests which failed due to bug
  81. #78145.
  82. 2006-04-21 Gert Driesen <[email protected]>
  83. * XmlCodeExporterTests.cs: Enabled tests for XmlCodeExporter.
  84. * XmlSchemaImporterTests.cs: Fixed EnumSimpleContent test to pass
  85. on MS.NET 2.0.
  86. 2006-04-20 Gert Driesen <[email protected]>
  87. * XmlCodeExporterTests.cs: Added tests for XmlCodeExporter (currently
  88. marked NotWorking).
  89. 2006-03-25 Gert Driesen <[email protected]>
  90. * XmlSchemaImporterTests.cs: Enabled tests for bug #77907.
  91. 2006-03-25 Gert Driesen <[email protected]>
  92. * XmlSchemaImporterTests.cs: Added NotWorking tests as preparation
  93. for XmlReflectionImporter and SoapReflectionImporter fixes. Reordered
  94. tests.
  95. 2006-03-22 Gert Driesen <[email protected]>
  96. * XmlReflectionImporterTests.cs: Added ImportTypeMapping tests for
  97. void and null type argument. Improved WrongChoices test to make sure
  98. the exception(s) we throw match those of MSFT. Added test for bug
  99. #77591.
  100. 2006-03-10 Gert Driesen <[email protected]>
  101. * XmlSchemaExporterTests.cs: Enabled tests for bug #77111.
  102. .
  103. 2006-03-10 Gert Driesen <[email protected]>
  104. * DeserializeTests.cs: Enabled tests for bug #77530.
  105. * XmlSerializerTests.cs: Enabled tests for bug #77530.
  106. 2006-03-07 Lluis Sanchez Gual <[email protected]>
  107. * System.Xml.Serialization/XmlSerializerTestClasses.cs:
  108. * System.Xml.Serialization/XmlSerializerTests.cs: Added tests
  109. for XmlSchemaForm.
  110. 2006-02-16 Gert Driesen <[email protected]>
  111. * XmlReflectionImporter.cs: Enabled few tests for bug #77531.
  112. * SoapReflectionImporter.cs: Enabled few tests for bug #77531.
  113. 2006-02-16 Lluis Sanchez Gual <[email protected]>
  114. * XmlSchemaImporterTests.cs: Added test for bug #76848.
  115. 2006-02-11 Gert Driesen <[email protected]>
  116. * XmlRootAttributeTests.cs: Set eol-style to CRLF.
  117. * SoapTypeAttributeTests.cs: Same.
  118. * XmlIncludeAttributeTests.cs: Same.
  119. * XmlTextAttributeTests.cs: Same.
  120. * XmlSerializerTests.cs: Same.
  121. * SoapIncludeAttributeTests.cs: Same.
  122. * XmlSerializationWriterTests.cs: Same.
  123. * XmlElementAttributeTests.cs: Same.
  124. * ComplexDataStructure.cs: Same.
  125. * DeserializerTests.cs: Same.
  126. * SoapElementAttributeTests.cs: Same.
  127. * XmlChoiceIdentifierAttributeTests.cs: Same.
  128. * XmlArrayItemAttributeTests.cs: Same.
  129. * XmlAnyElementAttributeTests.cs: Same.
  130. * XmlAttributesTests.cs: Same.
  131. * XmlAttributeAttributeTests.cs: Same.
  132. * XmlEnumAttributeTests.cs: Same.
  133. * SoapAttributeAttributeTests.cs: Same.
  134. * SoapEnumAttributeTests.cs: Same.
  135. * SoapSchemaMemberTests.cs: Same.
  136. * XmlArrayAttributeTests.cs: Same.
  137. * XmlSerializerTestClasses.cs: Same.
  138. * XmlSchemaImporterTests.cs: Set eol-style to native.
  139. 2006-02-11 Gert Driesen <[email protected]>
  140. * XmlReflectionImporterTests.cs: Added test for IDictionary import.
  141. Set eol style to CRLF.
  142. * SoapReflectionImporterTests.cs: Added test for IDictionary import.
  143. 2006-02-11 Gert Driesen <[email protected]>
  144. * XmlSerializerTestClasses.cs: Fixed line endings (sigh).
  145. 2006-02-10 Gert Driesen <[email protected]>
  146. * DeserializeTests.cs: Added tests for deserialization of enums, and
  147. primitive types container.
  148. * XmlSerializerTests.cs: Numbered some tests.
  149. 2006-02-09 Gert Driesen <[email protected]>
  150. * XmlSerializerTests.cs: Fixed build after failed merge.
  151. 2006-02-09 Gert Driesen <[email protected]>
  152. * XmlSerializerTests.cs: Added test for bug #77501. Added tests for
  153. XML and encoded serialization of enums.
  154. 2006-02-09 Gert Driesen <[email protected]>
  155. * XmlSerializationWriterTests.cs: Added Reset overload that takes
  156. Formatting. Added XmlNode[] tests for bug #77512, enabled tests for
  157. bug #77512.
  158. 2006-02-09 Gert Driesen <[email protected]>
  159. * SoapReflectionImporterTests.cs: Marked test NotDotNet.
  160. 2006-02-09 Lluis Sanchez Gual <[email protected]>
  161. * XmlSerializerTests.cs, XmlSerializerTestClasses.cs: Added test
  162. for bug #77447.
  163. 2006-02-09 Gert Driesen <[email protected]>
  164. * XmlSerializerTests.cs: Added constants for usage in new tests.
  165. Added methods for encoded serialization. Fixed line endings.
  166. 2006-02-09 Gert Driesen <[email protected]>
  167. * XmlSerializerTestClasses.cs: Added test classes.
  168. 2006-02-09 Gert Driesen <[email protected]>
  169. * XmlSerializationWriterTests.cs: Use Assert instead of deprecated
  170. Assertion class. Added tests for FromEnum, WriteXsiType,
  171. WriteTypedPrimitive and WritePotentiallyReferencingElement. Changed
  172. accessibility of Reset and Content on XmlSerializationWriterTester
  173. and added public Execute methods for WritePotentiallyReferencingElement
  174. and WriteTypedPrimitive, to allow this class to be useful for tests
  175. that have effect on the prefix for other tests.
  176. * XmlSerializationReaderTests.cs: Added tests for ToEnum.
  177. 2006-02-08 Gert Driesen <[email protected]>
  178. * XmlTypeAttributeTests.cs: Set eol-style to native.
  179. 2006-02-06 Gert Driesen <[email protected]>
  180. * DeserializeTests.cs: Use Assert instead of deprecated Assertion.
  181. Renumbered tests. Fixed line endings.
  182. 2006-02-05 Gert Driesen <[email protected]>
  183. * XmlSerializerTests.cs: No longer derive from Assertion, fixed some
  184. tests that were catching NUnit's AssertionException too.
  185. 2006-02-04 Gert Driesen <[email protected]>
  186. * XmlSchemaExporterTests.cs: Reworked tests that fail on Mono
  187. due to bug #77117 to pass on Mono (until that bug is fixed) and
  188. mark these tests NotDotNet.
  189. 2006-01-23 Gert Driesen <[email protected]>
  190. * XmlReflectionImporterTests.cs: Marked tests NotWorking until fixes
  191. have landed in svn.
  192. * SoapReflectionImporterTests.cs: Added numerous tests.
  193. * XmlSchemaImporterTests.cs: Added numerous tests.
  194. * XmlSchemaExporterTests.cs: Added numerous tests.
  195. * SoapSchemaExporterTests.cs: Added numerous tests.
  196. * XmlSerializerTestClasses.cs: Added test classes for
  197. XmlSchemaExporter. Fixed line endings (to CRLF).
  198. 2006-01-07 Gert Driesen <[email protected]>
  199. * XmlReflectionImporterTests.cs: Added numerous tests. No longer
  200. derive from Assertion.
  201. 2005-12-29 Gert Driesen <[email protected]>
  202. * XmlSchemaExporterTests.cs: Added tests for exporting structs, and
  203. arrays. Added tests for bug #77117. Refactored some existing tests.
  204. 2005-12-28 Gert Driesen <[email protected]>
  205. * XmlSerializerTests.cs: Added serialization test for XmlSchema.
  206. * XmlSchemaExporterTests.cs: Added tests for class, IXmlSerializable
  207. and primitives.
  208. 2005-12-27 Gert Driesen <[email protected]>
  209. * XmlSerializerTests.cs: Number individual tests.
  210. 2005-12-27 Gert Driesen <[email protected]>
  211. * XmlAttributesTests.cs: No longer derive from Assertion, number
  212. individual tests.
  213. 2005-12-05 Lluis Sanchez Gual <[email protected]>
  214. * XmlSerializerTestClasses.cs:
  215. * DeserializeTests.cs: Added tests for bug #76808 and related behavior.
  216. 2005-12-01 Lluis Sanchez Gual <[email protected]>
  217. * XmlSerializerTestClasses.cs:
  218. * XmlSerializerTests.cs: Added tests for bug #76860.
  219. 2005-11-24 Vladimir Krasnov <[email protected]>
  220. * XmlSerializerTestClasses.cs: added two enum types, without
  221. 0-value
  222. * XmlSerializerTests.cs: added tests for serialization enum's
  223. default value
  224. 2005-09-26 Lluis Sanchez Gual <[email protected]>
  225. * XmlSerializerTests.cs, DeserializeTests.cs,
  226. XmlSerializerTestClasses.cs: Added tests for serialization of
  227. arrays of choice values.
  228. 2005-09-21 Lluis Sanchez Gual <[email protected]>
  229. * XmlSerializerTests.cs, Added test for bug #76049.
  230. 2005-09-21 Lluis Sanchez Gual <[email protected]>
  231. * XmlSerializerTests.cs, XmlSerializerTestClasses.cs: Added test
  232. for bug #75986.
  233. 2005-08-24 Lluis Sanchez Gual <[email protected]>
  234. * XmlSerializerTests.cs: Added test for bug #75855.
  235. * DeserializeTests.cs: New test.
  236. * XmlSerializerTestClasses.cs: New test classes.
  237. 2005-07-31 Gert Driesen <[email protected]>
  238. * ComplexDataStructure.cs: Fixed test due to change in default value
  239. of XmlArrayItemAttribute.IsNullable.
  240. * SoapAttributeAttributeTests.cs: Added tests for default values.
  241. * SoapElementAttributeTests.cs: Added tests for default values.
  242. * SoapEnumAttributeTests.cs: Added tests for default values.
  243. * SoapIncludeAttributeTests.cs: Added tests for default values.
  244. * SoapSchemaMemberTests.cs: Added tests for default values.
  245. * SoapTypeAttributeTests.cs: Added tests for default values.
  246. * XmlAnyElementAttributeTests.cs: Added tests for default values.
  247. * XmlArrayAttributeTests.cs: Added tests for default values.
  248. * XmlArrayItemAttributeTests.cs: Added tests for default values.
  249. * XmlAttributeAttributeTests.cs: Added tests for default values.
  250. * XmlChoiceIdentifierAttributeTests.cs: Added tests for default
  251. values.
  252. * XmlElementAttributeTests.cs: Added tests for default values.
  253. * XmlEnumAttributeTests.cs: Added tests for default values.
  254. * XmlIncludeAttributeTests.cs: Added tests for default values.
  255. * XmlRootAttributeTests.cs: Added tests for default values.
  256. * XmlTextAttributeTests.cs: Added tests for default values.
  257. * XmlTypeAttributeTests.cs: Added tests for default values.
  258. 2005-06-17 Raja R Harinath <[email protected]>
  259. * XmlSerializerTests.cs (TestSerializeDateTime): Avoid rounding
  260. errors while printing timezone offset (off.TotalHours == 5.5 gets
  261. printed as 6). Fix sign of timezone.
  262. 2005-04-26 Lluis Sanchez Gual <[email protected]>
  263. * XmlSerializerTests.cs:
  264. * DeserializeTests.cs:
  265. * XmlSerializerTestClasses.cs: Added tests for readonly properties and
  266. elements with spaces on them.
  267. 2005-03-30 Lluis Sanchez Gual <[email protected]>
  268. * XmlSerializerTests.cs:
  269. * XmlReflectionImporterTests.cs:
  270. * DeserializeTests.cs:
  271. * XmlSerializerTestClasses.cs: Added tests for serialization of choices.
  272. 2005-03-29 Lluis Sanchez Gual <[email protected]>
  273. * XmlSerializerTests.cs:
  274. * DeserializeTests.cs:
  275. * XmlSerializerTestClasses.cs: Added some tests for xml node serialization.
  276. 2005-02-28 Atsushi Enomoto <[email protected]>
  277. * XmlReflectionImporterTests.cs : set NotWorking for trivial empty
  278. string comparison.
  279. 2005-02-10 Nick Drochak <[email protected]>
  280. * DeserializeTests.cs: Ignore new test on MS.NET, since it fails there.
  281. 2005-02-07 Lluis Sanchez Gual <[email protected]>
  282. * DeserializeTests.cs: Added test case for bug #72265.
  283. 2005-01-30 Nick Drochak <[email protected]>
  284. * ComplexDataStructure.cs:
  285. * DeserializationTests.cs: Ignore failures on .NET
  286. 2004-09-02 Lluis Sanchez Gual <[email protected]>
  287. * XmlSerializerTestClasses.cs: Added some test classes.
  288. * DeserializeTests.cs: Added tests for bug #61464.
  289. 2004-03-24 Lluis Sanchez Gual <[email protected]>
  290. * XmlSerializerTests.cs: Added some identifiers for AssertEquals.
  291. Minor fixes in Infoset method.
  292. * ComplexDataStructure.cs: New set of tests for testing complex object
  293. serialization.
  294. 2004-03-13 David Sheldon <[email protected]>
  295. * XmlReflectionImporterTests.cs: Switched the AssertEquals around
  296. the other way, so that the expecteed value was the first parameter.
  297. This makes the error messages you get out of it better.
  298. 2004-03-12 Lluis Sanchez Gual <[email protected]>
  299. * DeserializeTests.cs: Added test for empty enum deserialization (bug #55509).
  300. * XmlAttributesTests.cs, XmlReflectionImporterTests.cs,
  301. XmlSerializationWriterTests.cs, XmlSerializerTests.cs:
  302. Simplified namespace hierarchy.
  303. * XmlSerializerTestClasses.cs: Added more test classes.
  304. 2003-12-18 Lluis Sanchez Gual <[email protected]>
  305. * DeserializeTests.cs, XmlAttributesTests.cs: Changed namespace.
  306. * XmlSerializationWriterTests.cs, XmlSerializerTests.cs: Make xml compares
  307. independent from the text format.
  308. 2003-05-20 Atsushi Enomoto <[email protected]>
  309. * added DeserializeTests.cs and XmlAttributesTest.cs
  310. 2003-05-18 Atsushi Enomoto <[email protected]>
  311. * XmlSerializerTests.cs : fixed some AssertEquals() argument orders.
  312. and replaced some Assert() with AssertEquals().
  313. Applied USE_VERSION_1_1 to TestConstructor().
  314. 2003-05-16 Dick Porter <[email protected]>
  315. * XmlSerializerTests.cs: Test what happens when nulls are passed
  316. to the constructor
  317. 2003-05-16 Atsushi Enomoto <[email protected]>
  318. * XmlSerializerTests.cs : fixed some argument orders and fixed
  319. timezone dependent part of TestSerializeDateTime().
  320. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  321. * Tests inherits from Assertion and Assertion. prefixes removed
  322. 2003-05-10 Atsushi Enomoto <[email protected]>
  323. * added XmlSerializationWriterTests.cs. (by Erik)
  324. 2003-04-25 Atsushi Enomoto <[email protected]>
  325. * added XmlReflectionImporterTests.cs. (by Erik)
  326. 2003-04-12 Atsushi Enomoto <[email protected]>
  327. * added this file as a new entry.
  328. See ../ChangeLog to find former ChangeLog entries.
  329. * added XmlSerializerTests.cs and XmlSerializerTestClasses.cs
  330. (by Erik Lebel)