ChangeLog 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. 2002-03-26 Jason Diamond <[email protected]>
  2. * AllTests.cs:
  3. * Mono.Test.csproj: Removed XPathScanner tests.
  4. * System.XML_test.build: Test XPathScanner separately.
  5. 2002-03-26 Duncan Mak <[email protected]>
  6. * AllTests.cs:
  7. * Microsoft.Test.csproj:
  8. * Mono.Test.csproj: Updated to include new test,
  9. XmlDocumentTypeTests.
  10. * XmlDocumentTypeTests.cs: New testsuite for XmlDocumentType class.
  11. * XmlCommentTests.cs (TestXmlNodeBaseProperties): Move the
  12. XmlNode.Value test in here.
  13. 2002-03-26 Jason Diamond <[email protected]>
  14. * XPathScannerTests.cs: More location path tests.
  15. 2002-03-25 Jason Diamond <[email protected]>
  16. * AllTests.cs:
  17. * Microsoft.Test.csproj:
  18. * Mono.Test.csproj: Updated to include new test, XmlScannerTests.
  19. * XPathScannerTests.cs: Added new tests for XPathScanner class.
  20. 2002-03-25 Duncan Mak <[email protected]>
  21. * AllTests.cs:
  22. * Microsoft.Test.csproj:
  23. * Mono.Test.csproj: Updated to include new test,
  24. XmlDeclarationTests.
  25. * XmlDeclarationTests.cs: Added new test for XmlDeclaration class.
  26. 2002-03-23 Kral Ferch <[email protected]>
  27. * XmlTextWriterTests.cs: Tests for BaseStream,
  28. Namespaces = false, and WriteState.
  29. 2002-03-23 Kral Ferch <[email protected]>
  30. * XmlTextWriterTests.cs: constructor tests with
  31. different encodings to test that encoding gets suppressed
  32. on xml declaration when null stream passed to constructor.
  33. WriteStartDocument(standalone) tests. Tests for formatting
  34. and indentation. Test for invalid value set on QuoteChar.
  35. 2002-03-22 Duncan Mak <[email protected]>
  36. * AllTests.cs:
  37. * Microsoft.Test.csproj:
  38. * Mono.Test.csproj: Updated to include new files.
  39. * XmlCDataSectionTests.cs: Added to CVS.
  40. * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me
  41. setup a testing environment on VS.NET.
  42. * XmlElementTests.cs: Reformatted.
  43. (TestCloneNode): Added.
  44. * XmlSignificantWhitespaceTests.cs: Added to CVS.
  45. * XmlWhiteSpaceTests.cs: Added to CVS.
  46. 2002-03-21 Kral Ferch <[email protected]>
  47. * XmlDocumentTests.cs: Tessts parent traversal up through
  48. document itself until null. Tests a removed elements next
  49. sibling is null.
  50. * XmlNodeListTests.cs: Tests case where enumerator is on
  51. a node that gets removed from list.
  52. * XmlTextWriterTests.cs: Keeping tests for WriteXXX after
  53. writer is closed up to date as new WriteXXX methods are written.
  54. TestDocumentStart and TestWriteEndElement.
  55. 2002-03-19 Jason Diamond <[email protected]>
  56. * XmlDocumentTests.cs: Added a test to check an element's names after
  57. loading.
  58. 2002-03-17 Kral Ferch <[email protected]>
  59. * XmlDocumentTests.cs: Tests navigation to parents since
  60. that was part of a document.Load() bug reported by Mike Kestner.
  61. * XmlTextWriterTests.cs: Tests for namespaces and prefixes.
  62. 2002-03-17 Kral Ferch <[email protected]>
  63. * XmlDocumentTests.cs: TestOuterXml.
  64. * XmlTextWriterTests.cs: Tests for CData, Close, Comment, Element,
  65. and ProcessingInstruction.
  66. 2002-03-17 Kral Ferch <[email protected]>
  67. * XmlDocumentTests.cs: More LoadXml tests.
  68. * XmlTextWriterTests.cs: Test for invalid Processing Instructions.
  69. 2002-03-14 Kral Ferch <[email protected]>
  70. * XmlTextWriterTests.cs: Added tests TestCData and TestComment.
  71. 2002-03-14 Kral Ferch <[email protected]>
  72. * XmlTextWriterTests.cs: Initial checkin.
  73. 2002-03-12 Kral Ferch <[email protected]>
  74. * XmlNodeListTests.cs: New tests: TestNodeTypesThatCantHaveChildren,
  75. TestZeroChildren, TestOneChild, TestMultipleChildren,
  76. TestAppendChildAffectOnEnumeration, TestRemoveChildAffectOnEnumeration,
  77. TestRemoveOnlyChildAffectOnEnumeration, TestCurrentBeforeFirstNode,
  78. TestCurrentAfterLastNode, TestCurrentDoesntMove, and TestReset. Made
  79. two other tests but not in use yet until RemoveAll is implemented for
  80. attributes and XmlNode.ReplaceChild is implemented. The tests are called
  81. saveTestReplaceChildAffectOnEnumeration and saveTestRemoveAllAffectOnEnumeration.
  82. 2002-03-08 Jason Diamond <[email protected]>
  83. * XmlTextReaderTests.cs: Test MoveToElement and MoveToFirstAttribute.
  84. 2002-03-08 Jason Diamond <[email protected]>
  85. * XmlAttributeTests.cs: Test XmlAttribute child nodes.
  86. 2002-03-08 Kral Ferch <[email protected]>
  87. * XmlNodeListTests.cs: New file.
  88. * AllTests.cs: Added XmlNodeListTests.
  89. 2002/03/08 Nick Drochak <[email protected]>
  90. * System_test.build: Don't build test dll by default. Only build
  91. it when 'make test' is specified.
  92. 2002-03-06 Kral Ferch <[email protected]>
  93. * XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.
  94. * XmlDocumentTests.cs: Started work on some tests for invalid data in
  95. various nodes created by the document.
  96. 2002-03-02 Kral Ferch <[email protected]>
  97. * XmlDocumentTests.cs: New tests TestLoadProcessingInstruction(),
  98. TestLoadCDATA(), and TestLoadComment().
  99. 2002-03-02 Jason Diamond <[email protected]>
  100. * XmlElementTests.cs: New file.
  101. * AllTests.cs: Added XmlElementTests.
  102. 2002-03-02 Jason Diamond <[email protected]>
  103. * XmlTextReaderTests.cs: Test MoveToNextAttribute().
  104. * XmlDocumentTests.cs: Test loading document containing attributes
  105. and text nodes.
  106. 2002-03-02 Mike Kestner <[email protected]>
  107. * XmlAttributeTests.cs : New test suite for attrs.
  108. * AllTests.cs : Add the attr suite.
  109. 2002-03-02 Jason Diamond <[email protected]>
  110. * XmlNamespaceManagerTests.cs: Make sure the XmlNamespaceManager
  111. is using its name table.
  112. * NameTableTests.cs: Make sure NameTable is really returning the
  113. same references.
  114. 2002-02-28 Jason Diamond <[email protected]>
  115. * XmlDocumentTests.cs: Tests for XmlDocument.LoadXml courtesy of
  116. Kral Ferch <[email protected]>.
  117. 2002-02-28 Jason Diamond <[email protected]>
  118. * XmlTextReaderTests.cs: Test for XmlException when parse fail.
  119. 2002-02-27 Martin Baulig <[email protected]>
  120. * System.XML_test.build: Build new executable RunTests.System.XML.exe
  121. which you can use to run the tests on Linux.
  122. * *.cs: Added zero-args constructors.
  123. 2002-02-26 Duncan Mak <[email protected]>
  124. * NameTableTests.cs: Test for System.Xml.NameTable.
  125. 2002-02-26 Jason Diamond <[email protected]>
  126. * XmlTextReaderTests.cs: Test for namespace declarations as
  127. attributes.
  128. * XmlNamespaceManagerTests.cs: Use the newly implemented NameTable
  129. when creating the XmlNamespaceManager. Properly test HasNamespace.
  130. 2002-02-25 Jason Diamond <[email protected]>
  131. * XmlDocumentTests.cs: Added file.
  132. 2002-02-23 Jason Diamond <[email protected]>
  133. * XmlTextReaderTests.cs: Added tests for qualified attributes.
  134. 2002-02-23 Jason Diamond <[email protected]>
  135. * ChangeLog: Added change log to this directory.
  136. * Test.cs: Renamed to XmlTextReaderTests.cs.
  137. * XmlTextReaderTests.cs: Added tests for NamespaceURI property.
  138. * XmlNamespaceManagerTests.cs: Initial tests.