ChangeLog 21 KB

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