ChangeLog 22 KB

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