ChangeLog 20 KB

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