ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  1. 2008-04-01 Lluis Sanchez Gual <[email protected]>
  2. * XmlSerializerTestClasses.cs, XmlSerializerTests.cs: Test nullable
  3. enums.
  4. 2008-03-31 Gert Driesen <[email protected]>
  5. * XmlCodeExporterTests.cs: Remove CWL.
  6. 2008-03-30 Gert Driesen <[email protected]>
  7. * XmlSerializationReaderTests.cs: Marked HandleOutAttributeParameters
  8. test as NotDotNet on 1.0 profile.
  9. * XmlCodeExporterTests.cs: Improved test for duplicate identifiers.
  10. Fixed ExportTypeMapping_Root and ExportTypeMapping_Field tests to
  11. pass on .NET 2.0.
  12. 2008-02-19 Atsushi Enomoto <[email protected]>
  13. * XmlSchemasTests.cs : new test file (for bug #360541).
  14. 2007-11-02 Atsushi Enomoto <[email protected]>
  15. * XmlSerializerTests.cs : added test for bug #338705.
  16. 2007-11-01 Atsushi Enomoto <[email protected]>
  17. * XmlSchemaImporterTests.cs : test for importing simple-typed
  18. top-level element.
  19. 2007-10-30 Atsushi Enomoto <[email protected]>
  20. * XmlSchemaExporterTests.cs : without Infoset(), those tests randomly
  21. fail on .NET. This fix is incomplete. Someone please continue this
  22. boring work. I don't want to do that.
  23. 2007-10-30 Atsushi Enomoto <[email protected]>
  24. * XmlSerializerTests.cs : added test for bug #337729.
  25. 2007-10-30 Atsushi Enomoto <[email protected]>
  26. * XmlCodeExporterTests.cs : enable the previous test again.
  27. 2007-10-30 Atsushi Enomoto <[email protected]>
  28. * XmlCodeExporterTests.cs : disable the previous test; it's reverted.
  29. 2007-10-30 Atsushi Enomoto <[email protected]>
  30. * XmlCodeExporterTests.cs : added test for (part of?) bug #336739,
  31. base simple content enum type output.
  32. 2007-10-26 Atsushi Enomoto <[email protected]>
  33. * XmlSerializerTests.cs : added test for DataType in [XmlElement].
  34. 2007-09-25 Atsushi Enomoto <[email protected]>
  35. * XmlSerializerTests.cs : another XmlSchemaProvider test; use it
  36. as a member of an array.
  37. 2007-09-25 Atsushi Enomoto <[email protected]>
  38. * XmlSerializerTests.cs : added deserialization test for
  39. XmlSchemaProviderAttribute use.
  40. * XmlReflectionImporterTests.cs : added test for conclict resolution
  41. between defaultNamespace and XmlSchemaProvider() namespace.
  42. * XmlSchemaExporterTests.cs : use Infoset() comparison.
  43. 2007-09-25 Atsushi Enomoto <[email protected]>
  44. * XmlSerializerTests.cs, XmlReflectionImporterTests.cs :
  45. added tests for XmlSchemaProviderAttribute and how its qname works.
  46. 2007-08-21 Atsushi Enomoto <[email protected]>
  47. * XmlReflectionImporterTest.cs : test for bug #81880.
  48. 2007-08-21 Atsushi Enomoto <[email protected]>
  49. * XmlCodeExporterTests.cs : test for bug #82078.
  50. 2007-07-26 Atsushi Enomoto <[email protected]>
  51. * XmlSerializerTests.cs : test for #81539.
  52. 2007-04-25 Atsushi Enomoto <[email protected]>
  53. * XmlSerializationWriterTests.cs, XmlSerializerTests.cs :
  54. fixed wrong dateTime formatting tests.
  55. 2007-04-24 Atsushi Enomoto <[email protected]>
  56. * XmlSerializerTests.cs : another case on #80759 from gert.
  57. 2007-04-23 Atsushi Enomoto <[email protected]>
  58. * XmlSerializerTests.cs :
  59. added missing test from 80759, and marked similar but different one
  60. from the same bug as not working.
  61. 2007-04-20 Atsushi Enomoto <[email protected]>
  62. * XmlSerializerTests.cs :
  63. Added test for serializing private-constructor-only class.
  64. 2007-02-20 Atsushi Enomoto <[email protected]>
  65. * XmlSerializationReaderTests.cs : test non-empty element as well.
  66. 2007-02-20 Atsushi Enomoto <[email protected]>
  67. * XmlSerializationReaderTests.cs : added test for out attribute
  68. parameters. It also tests empty root element.
  69. 2007-02-19 Atsushi Enomoto <[email protected]>
  70. * XmlReflectionImporterTests.cs : added another test for nullable
  71. container.
  72. 2007-02-19 Atsushi Enomoto <[email protected]>
  73. * XmlReflectionImporterTests.cs : added test for nullable int import.
  74. 2007-02-14 Atsushi Enomoto <[email protected]>
  75. * XmlSerializerTests.cs : added HasFieldSpecifiedButIrrelevant().
  76. 2007-02-07 Gert Driesen <[email protected]>
  77. * XmlCodeExporter.cs: Avoid hardcoding version numbers. Enable tests
  78. again on 2.0 profile.
  79. 2007-02-07 Atsushi Enomoto <[email protected]>
  80. * SoapReflectionImporterTests.cs : removed some NotWorking.
  81. 2007-02-07 Atsushi Enomoto <[email protected]>
  82. * XmlSerializerTests.cs : added some XmlNode array/list tests.
  83. * XmlSerializationWriterTests.cs : removed more NotWorking. Added
  84. WriteTypedPrimitive() error test for XmlNode.
  85. 2007-02-07 Atsushi Enomoto <[email protected]>
  86. * XmlSerializationWriterTests.cs : removed some NotWorking.
  87. 2007-02-07 Atsushi Enomoto <[email protected]>
  88. * DeserializeTests.cs : a lot of tests were actually fixed yet.
  89. 2007-02-07 Atsushi Enomoto <[email protected]>
  90. * XmlCodeExporterTests.cs : Gert's tests often condemn Microsoft
  91. that they upgrade version numbers.
  92. 2007-01-19 Atsushi Enomoto <[email protected]>
  93. * XmlSchemaImporterTests.cs :
  94. Added ImportMembersMapping_NullableField().
  95. 2007-01-18 Atsushi Enomoto <[email protected]>
  96. * XmlSchemaImporterTests.cs :
  97. test that <xs:element nillable='true' ...> is mapped to Nullable<T>.
  98. 2007-01-15 Atsushi Enomoto <[email protected]>
  99. * XmlSerializerTests.cs : Fixed NotDotNet generic test which itself
  100. was wrong.
  101. 2007-01-15 Atsushi Enomoto <[email protected]>
  102. * XmlSerializerTests.cs : most of generic tests are working now.
  103. * XmlReflectionImporterTests.cs : test for rejecting generic type
  104. definition.
  105. 2006-12-04 Atsushi Enomoto <[email protected]>
  106. * XmlSerializerTests.cs :
  107. added base64 tests which is similar to hexBinary.
  108. 2006-12-03 Gert Driesen <[email protected]>
  109. * XmlSerializerTests.cs: Undo some of Hagit's code formatting changes.
  110. 2006-12-03 Gert Driesen <[email protected]>
  111. * XmlSerializerTests.cs: Only compile generic tests on 2.0 profile.
  112. Fixes build.
  113. * DeserializeTests.cs: Same.
  114. * XmlSerializerTestClasses.cs: Same.
  115. 2006-12-03 Gert Driesen <[email protected]>
  116. * XmlSchemaExporterTests.cs: Added tests for (part of) bug #78214.
  117. 2006-12-03 Hagit Yidov <[email protected]>
  118. * XmlSerializerTests.cs : added tests for serialization of generic types.
  119. * DeserializeTests.cs : added tests for deserialization of generic types.
  120. * XmlSerializerTestClasses.cs : added classes for tests which use generic types.
  121. 2006-12-01 Atsushi Enomoto <[email protected]>
  122. * XmlSerializerTests.cs : added tests for XmlArrayAttribute support.
  123. 2006-11-22 Atsushi Enomoto <[email protected]>
  124. * XmlSerializerTests.cs : added test for hexBinary.
  125. 2006-11-22 Atsushi Enomoto <[email protected]>
  126. * XmlReflectionImporterTests.cs : added test for class that contains
  127. nullable value type field whose XmlElementAttribute IsNullable.
  128. 2006-11-20 Atsushi Enomoto <[email protected]>
  129. * XmlSerializerTests.cs : added test for nullable type.
  130. 2006-11-17 Atsushi Enomoto <[email protected]>
  131. * XmlSerializerTests.cs : test for basic generic type support with
  132. code generation.
  133. 2006-11-14 Atsushi Enomoto <[email protected]>
  134. * XmlSerializerImplementationTests.cs :
  135. another custom implementation case.
  136. 2006-11-10 Atsushi Enomoto <[email protected]>
  137. * XmlSchemaExporterTests.cs :
  138. fixed almost all test cases which expected totally wrong schemas.
  139. Schema elements are all nillable unless it is of value type.
  140. 2006-11-09 Atsushi Enomoto <[email protected]>
  141. * XmlSchemaImporterTests.cs :
  142. added DefaultTypeTopLevelElementImportsAllComplexTypes().
  143. 2006-11-09 Atsushi Enomoto <[email protected]>
  144. * XmlSchemaImporterTests.cs :
  145. added ImportComplexDerivationByExtension().
  146. 2006-11-08 Atsushi Enomoto <[email protected]>
  147. * XmlSchemaImporterTests.cs :
  148. added AnyTypeTopLevelElementImportsAllComplexTypes().
  149. 2006-11-08 Atsushi Enomoto <[email protected]>
  150. * XmlSchemaImporterTests.cs : added ImportTypeMapping() test for
  151. nonexistent name.
  152. 2006-11-02 Atsushi Enomoto <[email protected]>
  153. * CodeIdentifiersTests.cs : new test.
  154. 2006-11-01 Atsushi Enomoto <[email protected]>
  155. * XmlSerializerImplementationTests.cs : new testfixture.
  156. 2006-10-10 Gert Driesen <[email protected]>
  157. * XmlSerializerTests.cs: Added a few tests. Fixed coding style.
  158. 2006-10-08 Gert Driesen <[email protected]>
  159. * DeserializeTest.cs: Added several tests.
  160. * XmlSerializerTestClasses.cs: Added test classes for encoded SOAP.
  161. * XmlSerializerTests.cs: Added new tests and fixed existing test.
  162. * XmlReflectionImporterTests.cs: Added test for invalid default
  163. values.
  164. * SoapReflectionImporterTests.cs: Fixed numbering of tests.
  165. 2006-10-01 Gert Driesen <[email protected]>
  166. * SoapReflectionImporterTests.cs: Added tests for bug #78206.
  167. 2006-05-30 Atsushi Enomoto <[email protected]>
  168. * XmlSerializerTests.cs : added tailored version of bug #78536 test.
  169. 2006-05-15 Gert Driesen <[email protected]>
  170. * XmlCodeExporterTests.cs: Added tests for arrays. Fixed usage of
  171. XmlRootAttribute in tests.
  172. 2006-04-26 Gert Driesen <[email protected]>
  173. * SoapSchemaExporterTests.cs: Sync expected results with changes to
  174. test classes.
  175. * XmlCodeExporterTests.cs: Same.
  176. 2006-04-26 Gert Driesen <[email protected]>
  177. * DeserializeTests.cs: Improved TestDeserialize_Enum test for
  178. bug #78204.
  179. 2006-04-26 Gert Driesen <[email protected]>
  180. * SoapAttributesTests.cs: Added tests for bug #78205.
  181. * XmlSerializerTestClasses.cs: Added test classes and improved existing
  182. classes for usage in upcoming bug reports.
  183. 2006-04-24 Gert Driesen <[email protected]>
  184. * XmlSchemaExporterTests.cs: Enabled tests which failed due to bug
  185. #78145.
  186. 2006-04-21 Gert Driesen <[email protected]>
  187. * XmlCodeExporterTests.cs: Enabled tests for XmlCodeExporter.
  188. * XmlSchemaImporterTests.cs: Fixed EnumSimpleContent test to pass
  189. on MS.NET 2.0.
  190. 2006-04-20 Gert Driesen <[email protected]>
  191. * XmlCodeExporterTests.cs: Added tests for XmlCodeExporter (currently
  192. marked NotWorking).
  193. 2006-03-25 Gert Driesen <[email protected]>
  194. * XmlSchemaImporterTests.cs: Enabled tests for bug #77907.
  195. 2006-03-25 Gert Driesen <[email protected]>
  196. * XmlSchemaImporterTests.cs: Added NotWorking tests as preparation
  197. for XmlReflectionImporter and SoapReflectionImporter fixes. Reordered
  198. tests.
  199. 2006-03-22 Gert Driesen <[email protected]>
  200. * XmlReflectionImporterTests.cs: Added ImportTypeMapping tests for
  201. void and null type argument. Improved WrongChoices test to make sure
  202. the exception(s) we throw match those of MSFT. Added test for bug
  203. #77591.
  204. 2006-03-10 Gert Driesen <[email protected]>
  205. * XmlSchemaExporterTests.cs: Enabled tests for bug #77111.
  206. .
  207. 2006-03-10 Gert Driesen <[email protected]>
  208. * DeserializeTests.cs: Enabled tests for bug #77530.
  209. * XmlSerializerTests.cs: Enabled tests for bug #77530.
  210. 2006-03-07 Lluis Sanchez Gual <[email protected]>
  211. * System.Xml.Serialization/XmlSerializerTestClasses.cs:
  212. * System.Xml.Serialization/XmlSerializerTests.cs: Added tests
  213. for XmlSchemaForm.
  214. 2006-02-16 Gert Driesen <[email protected]>
  215. * XmlReflectionImporter.cs: Enabled few tests for bug #77531.
  216. * SoapReflectionImporter.cs: Enabled few tests for bug #77531.
  217. 2006-02-16 Lluis Sanchez Gual <[email protected]>
  218. * XmlSchemaImporterTests.cs: Added test for bug #76848.
  219. 2006-02-11 Gert Driesen <[email protected]>
  220. * XmlRootAttributeTests.cs: Set eol-style to CRLF.
  221. * SoapTypeAttributeTests.cs: Same.
  222. * XmlIncludeAttributeTests.cs: Same.
  223. * XmlTextAttributeTests.cs: Same.
  224. * XmlSerializerTests.cs: Same.
  225. * SoapIncludeAttributeTests.cs: Same.
  226. * XmlSerializationWriterTests.cs: Same.
  227. * XmlElementAttributeTests.cs: Same.
  228. * ComplexDataStructure.cs: Same.
  229. * DeserializerTests.cs: Same.
  230. * SoapElementAttributeTests.cs: Same.
  231. * XmlChoiceIdentifierAttributeTests.cs: Same.
  232. * XmlArrayItemAttributeTests.cs: Same.
  233. * XmlAnyElementAttributeTests.cs: Same.
  234. * XmlAttributesTests.cs: Same.
  235. * XmlAttributeAttributeTests.cs: Same.
  236. * XmlEnumAttributeTests.cs: Same.
  237. * SoapAttributeAttributeTests.cs: Same.
  238. * SoapEnumAttributeTests.cs: Same.
  239. * SoapSchemaMemberTests.cs: Same.
  240. * XmlArrayAttributeTests.cs: Same.
  241. * XmlSerializerTestClasses.cs: Same.
  242. * XmlSchemaImporterTests.cs: Set eol-style to native.
  243. 2006-02-11 Gert Driesen <[email protected]>
  244. * XmlReflectionImporterTests.cs: Added test for IDictionary import.
  245. Set eol style to CRLF.
  246. * SoapReflectionImporterTests.cs: Added test for IDictionary import.
  247. 2006-02-11 Gert Driesen <[email protected]>
  248. * XmlSerializerTestClasses.cs: Fixed line endings (sigh).
  249. 2006-02-10 Gert Driesen <[email protected]>
  250. * DeserializeTests.cs: Added tests for deserialization of enums, and
  251. primitive types container.
  252. * XmlSerializerTests.cs: Numbered some tests.
  253. 2006-02-09 Gert Driesen <[email protected]>
  254. * XmlSerializerTests.cs: Fixed build after failed merge.
  255. 2006-02-09 Gert Driesen <[email protected]>
  256. * XmlSerializerTests.cs: Added test for bug #77501. Added tests for
  257. XML and encoded serialization of enums.
  258. 2006-02-09 Gert Driesen <[email protected]>
  259. * XmlSerializationWriterTests.cs: Added Reset overload that takes
  260. Formatting. Added XmlNode[] tests for bug #77512, enabled tests for
  261. bug #77512.
  262. 2006-02-09 Gert Driesen <[email protected]>
  263. * SoapReflectionImporterTests.cs: Marked test NotDotNet.
  264. 2006-02-09 Lluis Sanchez Gual <[email protected]>
  265. * XmlSerializerTests.cs, XmlSerializerTestClasses.cs: Added test
  266. for bug #77447.
  267. 2006-02-09 Gert Driesen <[email protected]>
  268. * XmlSerializerTests.cs: Added constants for usage in new tests.
  269. Added methods for encoded serialization. Fixed line endings.
  270. 2006-02-09 Gert Driesen <[email protected]>
  271. * XmlSerializerTestClasses.cs: Added test classes.
  272. 2006-02-09 Gert Driesen <[email protected]>
  273. * XmlSerializationWriterTests.cs: Use Assert instead of deprecated
  274. Assertion class. Added tests for FromEnum, WriteXsiType,
  275. WriteTypedPrimitive and WritePotentiallyReferencingElement. Changed
  276. accessibility of Reset and Content on XmlSerializationWriterTester
  277. and added public Execute methods for WritePotentiallyReferencingElement
  278. and WriteTypedPrimitive, to allow this class to be useful for tests
  279. that have effect on the prefix for other tests.
  280. * XmlSerializationReaderTests.cs: Added tests for ToEnum.
  281. 2006-02-08 Gert Driesen <[email protected]>
  282. * XmlTypeAttributeTests.cs: Set eol-style to native.
  283. 2006-02-06 Gert Driesen <[email protected]>
  284. * DeserializeTests.cs: Use Assert instead of deprecated Assertion.
  285. Renumbered tests. Fixed line endings.
  286. 2006-02-05 Gert Driesen <[email protected]>
  287. * XmlSerializerTests.cs: No longer derive from Assertion, fixed some
  288. tests that were catching NUnit's AssertionException too.
  289. 2006-02-04 Gert Driesen <[email protected]>
  290. * XmlSchemaExporterTests.cs: Reworked tests that fail on Mono
  291. due to bug #77117 to pass on Mono (until that bug is fixed) and
  292. mark these tests NotDotNet.
  293. 2006-01-23 Gert Driesen <[email protected]>
  294. * XmlReflectionImporterTests.cs: Marked tests NotWorking until fixes
  295. have landed in svn.
  296. * SoapReflectionImporterTests.cs: Added numerous tests.
  297. * XmlSchemaImporterTests.cs: Added numerous tests.
  298. * XmlSchemaExporterTests.cs: Added numerous tests.
  299. * SoapSchemaExporterTests.cs: Added numerous tests.
  300. * XmlSerializerTestClasses.cs: Added test classes for
  301. XmlSchemaExporter. Fixed line endings (to CRLF).
  302. 2006-01-07 Gert Driesen <[email protected]>
  303. * XmlReflectionImporterTests.cs: Added numerous tests. No longer
  304. derive from Assertion.
  305. 2005-12-29 Gert Driesen <[email protected]>
  306. * XmlSchemaExporterTests.cs: Added tests for exporting structs, and
  307. arrays. Added tests for bug #77117. Refactored some existing tests.
  308. 2005-12-28 Gert Driesen <[email protected]>
  309. * XmlSerializerTests.cs: Added serialization test for XmlSchema.
  310. * XmlSchemaExporterTests.cs: Added tests for class, IXmlSerializable
  311. and primitives.
  312. 2005-12-27 Gert Driesen <[email protected]>
  313. * XmlSerializerTests.cs: Number individual tests.
  314. 2005-12-27 Gert Driesen <[email protected]>
  315. * XmlAttributesTests.cs: No longer derive from Assertion, number
  316. individual tests.
  317. 2005-12-05 Lluis Sanchez Gual <[email protected]>
  318. * XmlSerializerTestClasses.cs:
  319. * DeserializeTests.cs: Added tests for bug #76808 and related behavior.
  320. 2005-12-01 Lluis Sanchez Gual <[email protected]>
  321. * XmlSerializerTestClasses.cs:
  322. * XmlSerializerTests.cs: Added tests for bug #76860.
  323. 2005-11-24 Vladimir Krasnov <[email protected]>
  324. * XmlSerializerTestClasses.cs: added two enum types, without
  325. 0-value
  326. * XmlSerializerTests.cs: added tests for serialization enum's
  327. default value
  328. 2005-09-26 Lluis Sanchez Gual <[email protected]>
  329. * XmlSerializerTests.cs, DeserializeTests.cs,
  330. XmlSerializerTestClasses.cs: Added tests for serialization of
  331. arrays of choice values.
  332. 2005-09-21 Lluis Sanchez Gual <[email protected]>
  333. * XmlSerializerTests.cs, Added test for bug #76049.
  334. 2005-09-21 Lluis Sanchez Gual <[email protected]>
  335. * XmlSerializerTests.cs, XmlSerializerTestClasses.cs: Added test
  336. for bug #75986.
  337. 2005-08-24 Lluis Sanchez Gual <[email protected]>
  338. * XmlSerializerTests.cs: Added test for bug #75855.
  339. * DeserializeTests.cs: New test.
  340. * XmlSerializerTestClasses.cs: New test classes.
  341. 2005-07-31 Gert Driesen <[email protected]>
  342. * ComplexDataStructure.cs: Fixed test due to change in default value
  343. of XmlArrayItemAttribute.IsNullable.
  344. * SoapAttributeAttributeTests.cs: Added tests for default values.
  345. * SoapElementAttributeTests.cs: Added tests for default values.
  346. * SoapEnumAttributeTests.cs: Added tests for default values.
  347. * SoapIncludeAttributeTests.cs: Added tests for default values.
  348. * SoapSchemaMemberTests.cs: Added tests for default values.
  349. * SoapTypeAttributeTests.cs: Added tests for default values.
  350. * XmlAnyElementAttributeTests.cs: Added tests for default values.
  351. * XmlArrayAttributeTests.cs: Added tests for default values.
  352. * XmlArrayItemAttributeTests.cs: Added tests for default values.
  353. * XmlAttributeAttributeTests.cs: Added tests for default values.
  354. * XmlChoiceIdentifierAttributeTests.cs: Added tests for default
  355. values.
  356. * XmlElementAttributeTests.cs: Added tests for default values.
  357. * XmlEnumAttributeTests.cs: Added tests for default values.
  358. * XmlIncludeAttributeTests.cs: Added tests for default values.
  359. * XmlRootAttributeTests.cs: Added tests for default values.
  360. * XmlTextAttributeTests.cs: Added tests for default values.
  361. * XmlTypeAttributeTests.cs: Added tests for default values.
  362. 2005-06-17 Raja R Harinath <[email protected]>
  363. * XmlSerializerTests.cs (TestSerializeDateTime): Avoid rounding
  364. errors while printing timezone offset (off.TotalHours == 5.5 gets
  365. printed as 6). Fix sign of timezone.
  366. 2005-04-26 Lluis Sanchez Gual <[email protected]>
  367. * XmlSerializerTests.cs:
  368. * DeserializeTests.cs:
  369. * XmlSerializerTestClasses.cs: Added tests for readonly properties and
  370. elements with spaces on them.
  371. 2005-03-30 Lluis Sanchez Gual <[email protected]>
  372. * XmlSerializerTests.cs:
  373. * XmlReflectionImporterTests.cs:
  374. * DeserializeTests.cs:
  375. * XmlSerializerTestClasses.cs: Added tests for serialization of choices.
  376. 2005-03-29 Lluis Sanchez Gual <[email protected]>
  377. * XmlSerializerTests.cs:
  378. * DeserializeTests.cs:
  379. * XmlSerializerTestClasses.cs: Added some tests for xml node serialization.
  380. 2005-02-28 Atsushi Enomoto <[email protected]>
  381. * XmlReflectionImporterTests.cs : set NotWorking for trivial empty
  382. string comparison.
  383. 2005-02-10 Nick Drochak <[email protected]>
  384. * DeserializeTests.cs: Ignore new test on MS.NET, since it fails there.
  385. 2005-02-07 Lluis Sanchez Gual <[email protected]>
  386. * DeserializeTests.cs: Added test case for bug #72265.
  387. 2005-01-30 Nick Drochak <[email protected]>
  388. * ComplexDataStructure.cs:
  389. * DeserializationTests.cs: Ignore failures on .NET
  390. 2004-09-02 Lluis Sanchez Gual <[email protected]>
  391. * XmlSerializerTestClasses.cs: Added some test classes.
  392. * DeserializeTests.cs: Added tests for bug #61464.
  393. 2004-03-24 Lluis Sanchez Gual <[email protected]>
  394. * XmlSerializerTests.cs: Added some identifiers for AssertEquals.
  395. Minor fixes in Infoset method.
  396. * ComplexDataStructure.cs: New set of tests for testing complex object
  397. serialization.
  398. 2004-03-13 David Sheldon <[email protected]>
  399. * XmlReflectionImporterTests.cs: Switched the AssertEquals around
  400. the other way, so that the expecteed value was the first parameter.
  401. This makes the error messages you get out of it better.
  402. 2004-03-12 Lluis Sanchez Gual <[email protected]>
  403. * DeserializeTests.cs: Added test for empty enum deserialization (bug #55509).
  404. * XmlAttributesTests.cs, XmlReflectionImporterTests.cs,
  405. XmlSerializationWriterTests.cs, XmlSerializerTests.cs:
  406. Simplified namespace hierarchy.
  407. * XmlSerializerTestClasses.cs: Added more test classes.
  408. 2003-12-18 Lluis Sanchez Gual <[email protected]>
  409. * DeserializeTests.cs, XmlAttributesTests.cs: Changed namespace.
  410. * XmlSerializationWriterTests.cs, XmlSerializerTests.cs: Make xml compares
  411. independent from the text format.
  412. 2003-05-20 Atsushi Enomoto <[email protected]>
  413. * added DeserializeTests.cs and XmlAttributesTest.cs
  414. 2003-05-18 Atsushi Enomoto <[email protected]>
  415. * XmlSerializerTests.cs : fixed some AssertEquals() argument orders.
  416. and replaced some Assert() with AssertEquals().
  417. Applied USE_VERSION_1_1 to TestConstructor().
  418. 2003-05-16 Dick Porter <[email protected]>
  419. * XmlSerializerTests.cs: Test what happens when nulls are passed
  420. to the constructor
  421. 2003-05-16 Atsushi Enomoto <[email protected]>
  422. * XmlSerializerTests.cs : fixed some argument orders and fixed
  423. timezone dependent part of TestSerializeDateTime().
  424. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  425. * Tests inherits from Assertion and Assertion. prefixes removed
  426. 2003-05-10 Atsushi Enomoto <[email protected]>
  427. * added XmlSerializationWriterTests.cs. (by Erik)
  428. 2003-04-25 Atsushi Enomoto <[email protected]>
  429. * added XmlReflectionImporterTests.cs. (by Erik)
  430. 2003-04-12 Atsushi Enomoto <[email protected]>
  431. * added this file as a new entry.
  432. See ../ChangeLog to find former ChangeLog entries.
  433. * added XmlSerializerTests.cs and XmlSerializerTestClasses.cs
  434. (by Erik Lebel)