ChangeLog 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. 2003-10-05 Atsushi Enomoto <[email protected]>
  2. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  3. methods.
  4. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  5. and added GetEntityWithNullArgs() (though it is uncommented).
  6. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  7. testing phase.
  8. 2003-09-21 Atsushi Enomoto <[email protected]>
  9. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  10. 2003-09-21 Atsushi Enomoto <[email protected]>
  11. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  12. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  13. which is rather buggy than their XmlNodeReader.
  14. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  15. and trivial messagefix.
  16. 2003-09-21 Atsushi Enomoto <[email protected]>
  17. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  18. 2003-08-24 Atsushi Enomoto <[email protected]>
  19. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  20. EmptyStringHasTextNode().
  21. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  22. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  23. ReadAttributeValue().
  24. * XmlTextReaderTests.cs :
  25. Added NotAllowedCharRef() and ExpandParameterEntity().
  26. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  27. and UndeclaredEntityInStandaloneXml().
  28. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  29. refactory.
  30. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  31. 2003-08-05 Atsushi Enomoto <[email protected]>
  32. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  33. should be ExpandCharEntities.
  34. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  35. ResolveEntity2() and ResolveEntityWithoutDTD().
  36. 2003-07-31 Atsushi Enomoto <[email protected]>
  37. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  38. CreateEntityReferencesWithoutDTD().
  39. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  40. ResolveEntityWithoutDTD().
  41. 2003-07-29 Atsushi Enomoto <[email protected]>
  42. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  43. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  44. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  45. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  46. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  47. entity reference inside text content (and it now fails).
  48. 2003-07-26 Atsushi Enomoto <[email protected]>
  49. * XmlAttributeTests.cs : added IdentityConstraints().
  50. * XmlDocumentTests.cs : added DocumentTypeNodes().
  51. * XmlNodeTests.cs : added InnerText().
  52. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  53. testing reader. Added IndexerAndAttributes().
  54. * XmlValidatingReader.cs : modified TestAttributes() to have
  55. ReadAttributeValue() tests. Added TestIdentityConstraints()
  56. 2003-07-24 Atsushi Enomoto <[email protected]>
  57. * XmlConvertTests.cs,
  58. XmlNodeTests.cs,
  59. XmlTextWriterTests.cs : removed some compilation warning.
  60. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  61. incorrect commit.
  62. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  63. and changed PrepareXmlReader() as returning validating reader.
  64. Added indexer (this[]) property check and ValidationType.None check
  65. to TestAttributeDefaultContribution().
  66. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  67. 2003-07-19 Atsushi Enomoto <[email protected]>
  68. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  69. some code refactory.
  70. 2003-07-12 Atsushi Enomoto <[email protected]>
  71. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  72. TestAttributeDefaultContribution().
  73. 2003-07-12 Atsushi Enomoto <[email protected]>
  74. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  75. ReadState check.
  76. * ChangeLog was incorrectly added about above stuff.
  77. * XmlTextReaderTests.cs : added some reader's state check tests and
  78. ReadAsElementContent and ReadAsAttributeContent.
  79. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  80. 2003-07-06 Atsushi Enomoto <[email protected]>
  81. * added XmlValidatingReaderTests.cs.
  82. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  83. * XmlTextWriterTests.cs: Made use of ExpectedException
  84. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  85. * Made tests which expect an exception use the
  86. ExpectedException Attribute.
  87. 2003-06-20 Atsushi Enomoto <[email protected]>
  88. * added XmlUrlResolverTests.cs.
  89. 2003-06-16 Atsushi Enomoto <[email protected]>
  90. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  91. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  92. in BaseURI test and DTD parameter entity test.
  93. 2003-06-16 Atsushi Enomoto <[email protected]>
  94. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  95. EmptyElementWithAttributes() and was added namespaced attribute tests.
  96. * XmlTextWriterTests.cs : added WriteWhitespace().
  97. 2003-06-10 Zoltan Varga <[email protected]>
  98. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  99. CreateAttribute.
  100. 2003-06-01 Atsushi Enomoto <[email protected]>
  101. * XmlConvertTests.cs : added VerifyNCName().
  102. 2003-05-18 Atsushi Enomoto <[email protected]>
  103. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  104. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  105. added more tests to AttributeWriteAttributeString().
  106. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  107. 2003-05-16 Atsushi Enomoto <[email protected]>
  108. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  109. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  110. and not well-formed xml of OuterXmlWithDefaultXmlns().
  111. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  112. WriteToWithDefaultNamespace().
  113. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  114. ReadInnerXmlWrongInit().
  115. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  116. * XmlReaderCommonTests.cs,
  117. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  118. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  119. to resolve these entity references.
  120. * XmlTextWriterTests.cs : removed English-dependent error message check.
  121. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  122. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  123. XmlDecl() as MS.NET results in.
  124. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  125. * Tests inherits from Assertion and Assertion. prefixes removed
  126. 2003-05-05 Atsushi Enomoto <[email protected]>
  127. * added XmlConvertTests.cs.
  128. 2003-04-29 Atsushi Enomoto <[email protected]>
  129. * XmlAttributeTests.cs : added WriteTo.
  130. * XmlReaderCommonTests.cs,
  131. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  132. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  133. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  134. they requires IsEmptyElement = false, which is always true for
  135. XmlNodeReader).
  136. 2003-04-27 Atsushi Enomoto <[email protected]>
  137. * XmlReaderCommonTests.cs,
  138. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  139. 2003-04-25 Atsushi Enomoto <[email protected]>
  140. * XmlWriterTests.cs : added some WriteNode() related testcases.
  141. 2003-04-13 Atsushi Enomoto <[email protected]>
  142. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  143. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  144. LoadDocumentWithIgnoreSection.
  145. 2003-04-12 Atsushi Enomoto <[email protected]>
  146. * added this file as a new entry.
  147. See ../ChangeLog to find ChangeLog entries before than this day.