ChangeLog 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. 2005-10-23 Atsushi Enomoto <[email protected]>
  2. * XmlNamespaceManagerTests.cs : GetNamespacesInScope() - Added test
  3. labels. Fixed counts; they count default namespaces. MS seems to
  4. have a bug on declaration removal (xmlns='') on .Local.
  5. * XmlNodeReaderTests.cs : in .NET 2.0 undeclared entity are not
  6. allowed at all, so disabled tests that depends on such references.
  7. 2005-10-23 Atsushi Enomoto <[email protected]>
  8. * XmlTextWriterTests.cs : split some tests that try to write nodes
  9. at error state (.NET 2.0 correctly rejects them).
  10. 2005-10-23 Atsushi Enomoto <[email protected]>
  11. * XmlTextReaderTests.cs, XmlValidatingReaderTests.cs,
  12. XmlReaderCommonTests.cs : added and fixed tests to make sure that
  13. LookupNamespace("") returns null for default namespace, and checks
  14. that empty namespace URI is not allowed for non-empty prefix.
  15. 2005-10-04 Atsushi Enomoto <[email protected]>
  16. * XmlConvertTests.cs : added test for bug #76328.
  17. 2005-10-01 Atsushi Enomoto <[email protected]>
  18. * XmlWriterSettingsTests.cs : test for NormalizeNewLines.
  19. 2005-10-01 Atsushi Enomoto <[email protected]>
  20. * XmlAttributeTests.cs : test for bug #76311.
  21. 2005-10-01 Atsushi Enomoto <[email protected]>
  22. * XmlReaderCommonTests.cs : added simple Create() test.
  23. 2005-09-28 Atsushi Enomoto <[email protected]>
  24. * XmlNodeReaderTests.cs : added test for bug #76260.
  25. 2005-09-27 Atsushi Enomoto <[email protected]>
  26. * XmlTextReaderTests.cs : added test for bug #76247.
  27. 2005-09-26 Atsushi Enomoto <[email protected]>
  28. * XmlValidatingReaderTests.cs : added test for bug #76234.
  29. 2005-09-25 Atsushi Enomoto <[email protected]>
  30. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags NET_2_0 update.
  31. 2005-09-21 Atsushi Enomoto <[email protected]>
  32. * XmlWriterSettingsTests.cs : removed NormalizeNewLines.
  33. 2005-09-21 Atsushi Enomoto <[email protected]>
  34. * XmlReaderSettingsTests.cs : updated NET_2_0 related tests.
  35. * NameTableTests.cs : numbered testcases. fixed argument order.
  36. 2005-09-14 Atsushi Enomoto <[email protected]>
  37. * XmlTextReaderTests.cs : added #76102 testcase.
  38. 2005-09-14 Atsushi Enomoto <[email protected]>
  39. * XmlTextWriterTests.cs : added #76095 testcase.
  40. 2005-08-31 Sebastien Pouliot <[email protected]>
  41. * XmlSecureResolverTests.cs: Added more test cases for CreateEvidence.
  42. * XmlSecureResolverCas.cs: New. CAS unit tests for XmlSecureResolver.
  43. * XmlExceptionCas.cs: New. CAS unit tests for exception serialization.
  44. 2005-08-04 Atsushi Enomoto <[email protected]>
  45. * XmlAttributeTests.cs : Test if set_Value() works in such cases that
  46. there was only one child in attribute and it was an entity reference.
  47. 2005-07-28 Atsushi Enomoto <[email protected]>
  48. * XsdValidatingReaderTests.cs : added test case for duplicating
  49. assignment of both Schemas.Add() and xsi:schemaLocation where
  50. schemaLocation could not be resolved.
  51. 2005-07-14 Atsushi Enomoto <[email protected]>
  52. * XmlTextWriterTests.cs : added bug #75546 testcase.
  53. 2005-06-29 Atsushi Enomoto <[email protected]>
  54. * XmlConvertTests.cs : added timespan milliseconds testcase.
  55. 2005-06-27 Atsushi Enomoto <[email protected]>
  56. * XmlTextReaderTests.cs : added a testcase for not-wf entity
  57. declaration which is actually not used in the instance.
  58. 2005-06-23 Atsushi Enomoto <[email protected]>
  59. * XsdParticleValidationTests.cs : XmlSchemaException ->
  60. XmlSchemaValidationException under 2.0 profile.
  61. 2005-06-17 Atsushi Enomoto <[email protected]>
  62. * XmlValidatingReaderTests.cs : added attribute namespace check in
  63. DefaultXmlnsAttributeLookup() as well.
  64. 2005-06-17 Atsushi Enomoto <[email protected]>
  65. * XmlValidatingReaderTests.cs : added DefaultXmlnsAttributeLookup().
  66. 2005-05-31 Atsushi Enomoto <[email protected]>
  67. * XmlValidatingReaderTests.cs : let's test external DTD as well.
  68. 2005-05-31 Atsushi Enomoto <[email protected]>
  69. * XmlValidatingReaderTests.cs : added ResolveEntityAndBaseURI() which
  70. is imported from sys.security.
  71. 2005-05-25 Andrew Skiba <[email protected]>
  72. * W3C : directory added
  73. 2005-05-10 Atsushi Enomoto <[email protected]>
  74. * XmlValidatingReaderTests.cs : fixed TestPreserveEntityNotOnDotNet()
  75. which was regarded as a bug while it was by design.
  76. 2005-05-05 Atsushi Enomoto <[email protected]>
  77. * XmlNamespaceManagerTests.cs : removed more atomizedName tests.
  78. 2005-05-05 Atsushi Enomoto <[email protected]>
  79. * XmlNamespaceManagerTests.cs : removed atomizedName related tests.
  80. 2005-03-25 Atsushi Enomoto <[email protected]>
  81. * XmlTextWriterTests.cs : added more test case for xml:space.
  82. 2005-03-24 Atsushi Enomoto <[email protected]>
  83. * XmlTextWriterTests.cs : added more tests on WriteQualifiedName().
  84. 2005-03-15 Atsushi Enomoto <[email protected]>
  85. * XmlValidatingReaderTests.cs : Added test for sequential text nodes
  86. which affects on ExpandEntities.
  87. 2005-03-09 Atsushi Enomoto <[email protected]>
  88. * XmlTextReaderTests.cs : added SurrogatePair() based on bug #73513.
  89. 2005-03-07 Atsushi Enomoto <[email protected]>
  90. * XmlDocumentTests.cs : Added ReadNodeEntityReferenceFillsChildren.
  91. Test case by Konstantin Triger.
  92. 2005-03-07 Atsushi Enomoto <[email protected]>
  93. * XmlValidatingReaderTests.cs : added ResolveEntityReadAttributeValue()
  94. 2005-03-03 Atsushi Enomoto <[email protected]>
  95. * XmlTextWriterTests.cs : added testcase for duplicating namespace
  96. mapping processing (should create another prefix, not exception).
  97. 2005-03-02 Atsushi Enomoto <[email protected]>
  98. * XmlTextWriterTests.cs : Added test for LookupPrefix() for
  99. overriden prefix.
  100. 2005-02-25 Atsushi Enomoto <[email protected]>
  101. * XmlNodeTests.cs : added Clone() of readonly node returns a node
  102. that is not readonly.
  103. 2005-02-25 Atsushi Enomoto <[email protected]>
  104. * XmlAttributeTests.cs : added nonNCName Prefix case.
  105. 2005-02-24 Atsushi Enomoto <[email protected]>
  106. * XmlTextWriterTests.cs : Test for call to WriteRaw() -> WriteString()
  107. 2005-02-16 Atsushi Enomoto <[email protected]>
  108. * XmlConvertTests.cs : added some null/empty string cases for
  109. EncodeName()/EncodeLocalName()/EncodeNmToken().
  110. 2005-02-15 Atsushi Enomoto <[email protected]>
  111. * XmlElementTests.cs : assertion numbering on
  112. RemoveDoesNotRemoveDefaultAttributes().
  113. 2005-01-26 Nick Drochak <[email protected]>
  114. * XmlValidatingReaderTests.cs: Move MS.NET bug-exposing test to a new
  115. test method and ignore it on .NET.
  116. 2005-01-17 Atsushi Enomoto <[email protected]>
  117. * XmlReaderSettingsTests.cs : added some .ctor() tests.
  118. 2005-01-13 Atsushi Enomoto <[email protected]>
  119. * XmlReaderCommonTests.cs : added labels for tests.
  120. Marked MoveToXmlDeclAttributes() as [Ignore] again because there is
  121. no consistent reference implementation to follow.
  122. 2005-01-13 Atsushi Enomoto <[email protected]>
  123. * XmlValidatingReaderTests.cs,
  124. XmlReaderCommonTests.cs,
  125. XmlTextWriterTests.cs,
  126. XmlUrlResolverTests.cs :
  127. Marked as NotDotNet for those tests that fails under MS.NET.
  128. Commented out some XmlTextWriter implementation-dependent assertions.
  129. Fixed ResolveUriWithNullArgs () expected return type.
  130. 2005-01-11 Atsushi Enomoto <[email protected]>
  131. * XmlTextWriterTests.cs : added Indent2() to test WriteComment EOL.
  132. 2004-01-11 Atsushi Enomoto <[email protected]>
  133. * XmlReaderCommonTests.cs :
  134. Oops, ReadAttributeValue() was not reverted. Now marked as NotDotNet.
  135. 2004-01-11 Atsushi Enomoto <[email protected]>
  136. * XmlReaderCommonTests.cs : reverted r38601. It is MS XmlTextReader
  137. that is buggy on attribute value's Prefix and NamespaceURI.
  138. 2005-01-10 Nick Drochak <[email protected]>
  139. * XmlWriterTests.cs: Fix build warnings.
  140. * XmlReaderCommonTests.cs: Make tests pass on Fx1.1. XmlNodeReader
  141. has different default attributes it seems.
  142. 2004-12-15 Raja R Harinath <[email protected]>
  143. * XmlReaderSettingsTests.cs (DefaultValue): Update DtdValidate and
  144. XsdValidate references to use ValidationType.
  145. 2004-12-08 Atsushi Enomoto <[email protected]>
  146. * XmlReaderSettingsTests.cs : updated some boolean flags to
  147. XmlSchemaValidationFlags.
  148. 2004-11-22 Atsushi Enomoto <[email protected]>
  149. * XmlTextReaderTests.cs : added AttributeNormalizationWrapped().
  150. 2004-11-14 Atsushi Enomoto <[email protected]>
  151. * XmlWriterTests.cs : Added test for WriteAttributes().
  152. 2004-11-08 Atsushi Enomoto <[email protected]>
  153. * XmlNodeReaderTests.cs : numbered some of asserts.
  154. 2004-11-08 Atsushi Enomoto <[email protected]>
  155. * XmlTextReaderTests.cs : added tests for 2.0 entity handling.
  156. * XmlValidatingReaderTests.cs : modified tests for entity handling
  157. that are changed in 2.0.
  158. 2004-10-29 Atsushi Enomoto <[email protected]>
  159. * XmlReaderCommonTests.cs : ReadAsObject() is removed.
  160. * XmlTextWriterTests.cs : added CloseTwice().
  161. * XmlNodeTests.cs : added labels.
  162. 2004-09-08 Atsushi Enomoto <[email protected]>
  163. * XmlWriterSettingsTests.cs : added.
  164. 2004-09-07 Atsushi Enomoto <[email protected]>
  165. * XmlReaderCommonTests.cs : Added tests for ReadAsObject().
  166. 2004-09-07 Atsushi Enomoto <[email protected]>
  167. * XmlNamespaceManagerTests.cs : Added test for duplicate addition,
  168. atomization, complex RemoveNamespace() and GetNamespacesInScope().
  169. 2004-09-07 Atsushi Enomoto <[email protected]>
  170. * XmlReaderSettingsTests.cs : added, including XmlReader.Create() tests
  171. * XmlTextReaderTests.cs : added normalization and Setting sests.
  172. 2004-09-06 Atsushi Enomoto <[email protected]>
  173. * XmlElementTests.cs : added another set_InnerXml test.
  174. * XmlNodeTests.cs : added BaseURI test.
  175. * XmlTextReaderTests.cs : added tests for Normalization, EOF,
  176. LineNumber, LinePosition (all reported ones).
  177. * XsdValidatingReaderTests.cs : more descriptions.
  178. 2004-09-06 Atsushi Enomoto <[email protected]>
  179. * XmlTextReaderTests.cs : added ProhibitDtd().
  180. * XmlWriterTests.cs : added WriteNodeError().
  181. 2004-06-21 Atsushi Enomoto <[email protected]>
  182. * XmlSecureResolverTests.cs : Just [Ignore] EmptyEvidenceDeniedAccess.
  183. It requires CAS.
  184. 2004-06-18 Atsushi Enomoto <[email protected]>
  185. * XmlSecureResolverTests.cs : [TestFixture] was missing.
  186. 2004-06-14 Atsushi Enomoto <[email protected]>
  187. * XmlTextWriterTests.cs : Avoid CR/CRLF testing complexity.
  188. 2004-06-14 Atsushi Enomoto <[email protected]>
  189. * XmlUrlResolverTests.cs : Unlike MS.NET, we treats Unix absolute file
  190. URI file:///usr/local/src as correct file path. MS.NET is not aware
  191. of such format and parses as "host = usr, path = /local/src".
  192. 2004-06-06 Atsushi Enomoto <[email protected]>
  193. * XmlTextWriterTests.cs : Added indentation testcase (it might now
  194. work due to CompareInfo.IndexOf() bug).
  195. 2004-06-06 Atsushi Enomoto <[email protected]>
  196. * XmlTextReaderTests.cs : added some namespace check tests.
  197. 2004-05-27 Atsushi Enomoto <[email protected]>
  198. * XmlTextReaderTests.cs : added test for bug #59142.
  199. * XmlTextWriterTests.cs : added test for bug #59154.
  200. * XmlDocumentTests.cs : added test for bug #59155.
  201. 2004-05-24 Atsushi Enomoto <[email protected]>
  202. * XmlNodeTests.cs : added Normalize2().
  203. 2004-05-13 Atsushi Enomoto <[email protected]>
  204. * XsdValidatingReaderTests.cs : Ignore TestNamespaceFalse(). It is not
  205. kind of thing that should be supported.
  206. * XmlValidatingReaderTests.cs : commented a bit.
  207. 2004-04-24 Atsushi Enomoto <[email protected]>
  208. * XmlConvertTests.cs : Commented out locale-dependent tests.
  209. * XmlDocumentTests.cs : Uncommented now-testable lines.
  210. Commented out that should not be allowed, such as non-XML-name node.
  211. 2004-04-24 Atsushi Enomoto <[email protected]>
  212. * XmlDeclarationTests.cs : More InnerText tests.
  213. 2004-04-20 Atsushi Enomoto <[email protected]>
  214. * XmlCharacterDataTests.cs : Added more tests for Substring().
  215. * XmlConvertTests.cs : Commented out locale-dependent tests.
  216. * XmlDocumentTests.cs : Added LoadEntityReference().
  217. 2004-03-31 Atsushi Enomoto <[email protected]>
  218. * Added nist_dom tests from Mainsoft hackers.
  219. * Added XmlSecureResolverTests.cs.
  220. 2004-03-16 Atsushi Enomoto <[email protected]>
  221. * XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
  222. should be written regardless of document.PreserveWhitespace.)
  223. 2004-03-15 Atsushi Enomoto <[email protected]>
  224. * XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
  225. EndElement.
  226. 2004-03-14 Atsushi Enomoto <[email protected]>
  227. * XmlAttributeCollectionTests.cs : Added InsertAfterError().
  228. * XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
  229. 2004-03-04 Atsushi Enomoto <[email protected]>
  230. * XmlDocumentTests.cs : added Implementation().
  231. 2004-02-17 Atsushi Enomoto <[email protected]>
  232. * XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
  233. 2004-02-05 Atsushi Enomoto <[email protected]>
  234. * XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
  235. ReadNodeWhitespace().
  236. * XmlElementTests.cs : Added SetAttributeNodeError().
  237. 2004-02-04 Atsushi Enomoto <[email protected]>
  238. * XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
  239. DescendantsRecursively and added more test lines.
  240. Added ChildNodes().
  241. * XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
  242. it is ignored (since XmlNodeReader behaves differently, maybe bug).
  243. 2004-02-03 Atsushi Enomoto <[email protected]>
  244. * XmlReaderCommonTests.cs : Added SurrogatePairContent().
  245. * XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
  246. * XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
  247. 2004-01-28 Atsushi Enomoto <[email protected]>
  248. * XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
  249. * XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
  250. element, removed extraneous test switch for InsertBefore().
  251. * XsdParticleValidationTests.cs,
  252. XsdValidatingReaderTests.cs : These test class names are too
  253. ambiguous so just renamed them. (No bug reports are found on them,
  254. but should be warned in the meantime.)
  255. 2004-01-23 Atsushi Enomoto <[email protected]>
  256. * XmlElementTests.cs : Added SetAttributeXmlns.
  257. * XmlTextWriterTests.cs : Added several xmlns-related tests.
  258. 2004-01-22 Atsushi Enomoto <[email protected]>
  259. * XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
  260. 2004-01-20 Atsushi Enomoto <[email protected]>
  261. * XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
  262. * XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
  263. 2004-01-14 Atsushi Enomoto <[email protected]>
  264. * XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
  265. * XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
  266. XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
  267. Close or avoid XmlTextReader.
  268. 2004-01-03 Atsushi Enomoto <[email protected]>
  269. * XmlAttributeCollectionTests.cs :
  270. added InsertAfterReplacesInCorrectOrder().
  271. * XmlUrlResolverTests.cs : fixed file path.
  272. * XmlTextReaderTests.cs : fixed file path.
  273. * XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
  274. 2003-12-21 Atsushi Enomoto <[email protected]>
  275. * XmlDocumentTests.cs, XmlElementTests.cs :
  276. Added GetElementsByTagNameNs2().
  277. 2003-12-16 Atsushi Enomoto <[email protected]>
  278. * XmlDeclarationTests.cs : Added InvalidInnerText().
  279. * XmlDocumentTests.cs : CRLF fix (to LF)
  280. * XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
  281. * XmlValidatingReaderTests.cs : Fixed entity handling check tests.
  282. 2003-11-28 Atsushi Enomoto <[email protected]>
  283. * XmlWriterTests.cs : Added WriteNodeFullDocument() with
  284. encoding specification. Added WriteNodeNonEmptyElement().
  285. * XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
  286. and GetEntityWithRelativeFileUri().
  287. * XmlTextWriterTests.cs : Added some namespace related tests.
  288. * XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
  289. * XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
  290. nodes.
  291. * XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
  292. * XmlDeclarationTests.cs : Added InvalidInnerText().
  293. * XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
  294. 2003-10-13 Atsushi Enomoto <[email protected]>
  295. * XmlWriterTests.cs : Added WriteSurrogateCharEntity().
  296. 2003-10-13 Atsushi Enomoto <[email protected]>
  297. * XmlElementTests.cs : Added more tests on
  298. RemoveDoesNotRemoveDefaultAttributes().
  299. * XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
  300. GetNamespaceOfPrefixNullArg().
  301. * XmlWriterTests.cs : Added WriteNodeNone().
  302. 2003-10-05 Atsushi Enomoto <[email protected]>
  303. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  304. methods.
  305. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  306. and added GetEntityWithNullArgs() (though it is uncommented).
  307. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  308. testing phase.
  309. 2003-09-21 Atsushi Enomoto <[email protected]>
  310. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  311. 2003-09-21 Atsushi Enomoto <[email protected]>
  312. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  313. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  314. which is rather buggy than their XmlNodeReader.
  315. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  316. and trivial messagefix.
  317. 2003-09-21 Atsushi Enomoto <[email protected]>
  318. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  319. 2003-08-24 Atsushi Enomoto <[email protected]>
  320. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  321. EmptyStringHasTextNode().
  322. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  323. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  324. ReadAttributeValue().
  325. * XmlTextReaderTests.cs :
  326. Added NotAllowedCharRef() and ExpandParameterEntity().
  327. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  328. and UndeclaredEntityInStandaloneXml().
  329. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  330. refactory.
  331. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  332. 2003-08-05 Atsushi Enomoto <[email protected]>
  333. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  334. should be ExpandCharEntities.
  335. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  336. ResolveEntity2() and ResolveEntityWithoutDTD().
  337. 2003-07-31 Atsushi Enomoto <[email protected]>
  338. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  339. CreateEntityReferencesWithoutDTD().
  340. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  341. ResolveEntityWithoutDTD().
  342. 2003-07-29 Atsushi Enomoto <[email protected]>
  343. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  344. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  345. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  346. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  347. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  348. entity reference inside text content (and it now fails).
  349. 2003-07-26 Atsushi Enomoto <[email protected]>
  350. * XmlAttributeTests.cs : added IdentityConstraints().
  351. * XmlDocumentTests.cs : added DocumentTypeNodes().
  352. * XmlNodeTests.cs : added InnerText().
  353. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  354. testing reader. Added IndexerAndAttributes().
  355. * XmlValidatingReader.cs : modified TestAttributes() to have
  356. ReadAttributeValue() tests. Added TestIdentityConstraints()
  357. 2003-07-24 Atsushi Enomoto <[email protected]>
  358. * XmlConvertTests.cs,
  359. XmlNodeTests.cs,
  360. XmlTextWriterTests.cs : removed some compilation warning.
  361. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  362. incorrect commit.
  363. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  364. and changed PrepareXmlReader() as returning validating reader.
  365. Added indexer (this[]) property check and ValidationType.None check
  366. to TestAttributeDefaultContribution().
  367. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  368. 2003-07-19 Atsushi Enomoto <[email protected]>
  369. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  370. some code refactory.
  371. 2003-07-12 Atsushi Enomoto <[email protected]>
  372. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  373. TestAttributeDefaultContribution().
  374. 2003-07-12 Atsushi Enomoto <[email protected]>
  375. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  376. ReadState check.
  377. * ChangeLog was incorrectly added about above stuff.
  378. * XmlTextReaderTests.cs : added some reader's state check tests and
  379. ReadAsElementContent and ReadAsAttributeContent.
  380. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  381. 2003-07-06 Atsushi Enomoto <[email protected]>
  382. * added XmlValidatingReaderTests.cs.
  383. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  384. * XmlTextWriterTests.cs: Made use of ExpectedException
  385. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  386. * Made tests which expect an exception use the
  387. ExpectedException Attribute.
  388. 2003-06-20 Atsushi Enomoto <[email protected]>
  389. * added XmlUrlResolverTests.cs.
  390. 2003-06-16 Atsushi Enomoto <[email protected]>
  391. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  392. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  393. in BaseURI test and DTD parameter entity test.
  394. 2003-06-16 Atsushi Enomoto <[email protected]>
  395. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  396. EmptyElementWithAttributes() and was added namespaced attribute tests.
  397. * XmlTextWriterTests.cs : added WriteWhitespace().
  398. 2003-06-10 Zoltan Varga <[email protected]>
  399. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  400. CreateAttribute.
  401. 2003-06-01 Atsushi Enomoto <[email protected]>
  402. * XmlConvertTests.cs : added VerifyNCName().
  403. 2003-05-18 Atsushi Enomoto <[email protected]>
  404. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  405. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  406. added more tests to AttributeWriteAttributeString().
  407. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  408. 2003-05-16 Atsushi Enomoto <[email protected]>
  409. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  410. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  411. and not well-formed xml of OuterXmlWithDefaultXmlns().
  412. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  413. WriteToWithDefaultNamespace().
  414. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  415. ReadInnerXmlWrongInit().
  416. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  417. * XmlReaderCommonTests.cs,
  418. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  419. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  420. to resolve these entity references.
  421. * XmlTextWriterTests.cs : removed English-dependent error message check.
  422. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  423. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  424. XmlDecl() as MS.NET results in.
  425. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  426. * Tests inherits from Assertion and Assertion. prefixes removed
  427. 2003-05-05 Atsushi Enomoto <[email protected]>
  428. * added XmlConvertTests.cs.
  429. 2003-04-29 Atsushi Enomoto <[email protected]>
  430. * XmlAttributeTests.cs : added WriteTo.
  431. * XmlReaderCommonTests.cs,
  432. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  433. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  434. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  435. they requires IsEmptyElement = false, which is always true for
  436. XmlNodeReader).
  437. 2003-04-27 Atsushi Enomoto <[email protected]>
  438. * XmlReaderCommonTests.cs,
  439. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  440. 2003-04-25 Atsushi Enomoto <[email protected]>
  441. * XmlWriterTests.cs : added some WriteNode() related testcases.
  442. 2003-04-13 Atsushi Enomoto <[email protected]>
  443. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  444. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  445. LoadDocumentWithIgnoreSection.
  446. 2003-04-12 Atsushi Enomoto <[email protected]>
  447. * added this file as a new entry.
  448. See ../ChangeLog to find ChangeLog entries before than this day.