ChangeLog 5.9 KB

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