ChangeLog 22 KB

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