ChangeLog 23 KB

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