ChangeLog 19 KB

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