ChangeLog 19 KB

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