ChangeLog 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. 2002-08-19 Jason Diamond <[email protected]>
  2. * XmlDocument.cs, XmlElement.cs: Added tests for
  3. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  4. 2002-08-17 Jason Diamond <[email protected]>
  5. * XPathNavigatorMatchesTests.cs: Added tests for absolute patterns
  6. and patterns with predicates.
  7. 2002-08-17 Jason Diamond <[email protected]>
  8. * AllTests.cs: Added XPathNavigatorMatchesTests suite.
  9. * XPathNavigatorMatchesTests.cs: Added.
  10. 2002-08-16 Jason Diamond <[email protected]>
  11. * XmlElementTests.cs: Added test for OuterXml (and WriteTo) for
  12. qualified elements.
  13. 2002-08-16 Jason Diamond <[email protected]>
  14. * makefile.gnu: Added SOURCES_INCLUDE and SOURCES_EXCLUDE variables
  15. to get tests to build with the new build system.
  16. 2002-08-10 Jason Diamond <[email protected]>
  17. * makefile.gnu: Use relative path to NUnitConsole_mono.exe instead of
  18. hardcoding it to /usr/local/bin. Default test suite to AllTests but
  19. allow it to be overridden from the command line.
  20. * XmlTextWriterTests.cs: Split TestWriteString into multiple tests.
  21. Added encoding parameters to all the StreamReaders in
  22. TestBaseConstructorsAndBaseStream. I think this is a bug in Mono's
  23. StreamReader since these aren't required when testing against
  24. Microsoft's.
  25. 2002-08-08 Jason Diamond <[email protected]>
  26. * System.XML_linux_test.args: Added Kral's new test classes.
  27. 2002-08-07 Kral Ferch <[email protected]>
  28. * XmlCharacterDataTests.cs: New file.
  29. * XmlNodeTests.cs: New file.
  30. * AllTests.cs: Added XmlCharacterDataTests and XmlNodeTests.
  31. * XmlDocumentTests.cs: Added tests for NodeChanging, NodeChanged,
  32. NodeInserting, NodeInserted, NodeRemoving, and NodeRemoved events.
  33. 2002-08-03 Jason Diamond <[email protected]>
  34. * makefile.gnu: Added.
  35. * System.XML_linux_test.args: Added.
  36. 2002-07-12 Piers Haken <[email protected]
  37. * SelectNodesTests.cs: Added TestUnion (bug #27548)
  38. 2002-07-11 Jason Diamond <[email protected]>
  39. * SelectNodesTests.cs: Added.
  40. * AllTests.cs: Added SelectNodesTests to suite.
  41. 2002-07-11 Piers Haken <[email protected]>
  42. * XmlElementTests.cs: added TestCreateElement3WithNullNamespace
  43. 2002-06-24 Jason Diamond <[email protected]>
  44. * XPathScannerTests.cs: Removed.
  45. * System.XML_test.build: Removed tests for XPathScanner.
  46. 2002-05-27 Jason Diamond <[email protected]>
  47. * XPathNavigatorTests.cs: Added file to directory.
  48. * AllTests.cs: Added XPathNavigatorTests to suite.
  49. * XmlTextReaderTests.cs: Added test to make sure attributes are ordered
  50. like Microsoft's parser does it.
  51. 2002-05-05 Nick Drochak <[email protected]>
  52. * ChangeLog: Update build file to run correct class in the test dll.
  53. 2002-05-05 Nick Drochak <[email protected]>
  54. * AllTests.cs
  55. * NameTableTests.cs
  56. * TheTests.cs
  57. * XPathScannerTests.cs
  58. * XmlAttributeTests.cs
  59. * XmlCDataSectionTests.cs
  60. * XmlCommentTests.cs
  61. * XmlDeclarationTests.cs
  62. * XmlDocumentTests.cs
  63. * XmlDocumentTypeTests.cs
  64. * XmlElementTests.cs
  65. * XmlNamespaceManagerTests.cs
  66. * XmlNodeListTests.cs
  67. * XmlProcessingInstructionTests.cs
  68. * XmlSignificantWhitespaceTests.cs
  69. * XmlTextReaderTests.cs
  70. * XmlTextTests.cs
  71. * XmlTextWriterTests.cs
  72. * XmlWhiteSpaceTests.cs: Use same namespace style as corlib tests.
  73. Changed Ximian.Mono.Tests to MonoTests.System.Xml
  74. 2002-04-08 Kral Ferch <[email protected]>
  75. * AllTests.cs: added XmlProcessingInstructionTests and XmlTextTests.
  76. * MonoMicro.Test.csproj: Added XmlProcessingInstructionTests.cs and
  77. XmlTextTests.cs.
  78. * XmlAttributeTests.cs: Added TestAttributeInnerAndOuterXml.
  79. * XmlCDataSectionTests.cs: Added TestXmlCDataSectionInnerAndOuterXml.
  80. * XmlCommentTests.cs: Added TestXmlCommentInnerAndOuterXml.
  81. * XmlDeclarationTests.cs: Added TestInnerAndOuterXml.
  82. * XmlDocumentTests.cs: Added TestInnerAndOuterXml.
  83. * XmlElementTests.cs: Added TestInnerAndOuterXml.
  84. * XmlProcessingInstructionTests.cs: Initial check-in.
  85. * XmlSignificantWhitespaceTests.cs: Added TestInnerAndOuterXml.
  86. * XmlTextTests.cs: Initial check-in.
  87. * XmlTextWriterTests.cs: Added TestWriteRaw, TestWriteRawInvalidInAttribute,
  88. and TestXmlSpaceRaw.
  89. * XmlWhiteSpacesTests.cs: Added TestInnerAndOuterXml.
  90. 2002-04-05 Kral Ferch <[email protected]>
  91. * XmlDocumentTests.cs: CreateNode tests.
  92. 2002-04-01 Kral Ferch <[email protected]>
  93. * XmlTextWriterTests.cs: Tests for WriteEndDocument and WriteFullEndElement.
  94. 2002-03-31 Kral Ferch <[email protected]>
  95. * XmlTextWriterTests.cs: Tests for LookupPrefix, WriteBase64,
  96. and WriteCharEntity.
  97. 2002-03-31 Kral Ferch <[email protected]>
  98. * XmlTextWriterTests.cs: Finished XmlLang, XmlSpace, and
  99. Attribute namespace declaration tests.
  100. 2002-03-29 Kral Ferch <[email protected]>
  101. * XmlTextWriterTests.cs: XmlLang and XmlSpace tests.
  102. 2002-03-29 Kral Ferch <[email protected]>
  103. * XmlTextWriterTests.cs: Working on Attributes.
  104. 2002-03-28 Duncan Mak <[email protected]>
  105. * XmlDeclarationTests.cs (TestConstructor):
  106. * XmlDocumentTypeTests.cs (TestAppendChild):
  107. * XmlSignificantWhitespaceTests.cs (TestXmlWhitespaceConstructor):
  108. * XmlWhiteSpaceTests.cs (TestXmlWhitespaceConstructor): Fixed the
  109. test for catching Exceptions.
  110. 2002-03-26 Jason Diamond <[email protected]>
  111. * AllTests.cs:
  112. * Mono.Test.csproj: Removed XPathScanner tests.
  113. * System.XML_test.build: Test XPathScanner separately.
  114. 2002-03-26 Duncan Mak <[email protected]>
  115. * AllTests.cs:
  116. * Microsoft.Test.csproj:
  117. * Mono.Test.csproj: Updated to include new test,
  118. XmlDocumentTypeTests.
  119. * XmlDocumentTypeTests.cs: New testsuite for XmlDocumentType class.
  120. * XmlCommentTests.cs (TestXmlNodeBaseProperties): Move the
  121. XmlNode.Value test in here.
  122. 2002-03-26 Jason Diamond <[email protected]>
  123. * XPathScannerTests.cs: More location path tests.
  124. 2002-03-25 Jason Diamond <[email protected]>
  125. * AllTests.cs:
  126. * Microsoft.Test.csproj:
  127. * Mono.Test.csproj: Updated to include new test, XmlScannerTests.
  128. * XPathScannerTests.cs: Added new tests for XPathScanner class.
  129. 2002-03-25 Duncan Mak <[email protected]>
  130. * AllTests.cs:
  131. * Microsoft.Test.csproj:
  132. * Mono.Test.csproj: Updated to include new test,
  133. XmlDeclarationTests.
  134. * XmlDeclarationTests.cs: Added new test for XmlDeclaration class.
  135. 2002-03-23 Kral Ferch <[email protected]>
  136. * XmlTextWriterTests.cs: Tests for BaseStream,
  137. Namespaces = false, and WriteState.
  138. 2002-03-23 Kral Ferch <[email protected]>
  139. * XmlTextWriterTests.cs: constructor tests with
  140. different encodings to test that encoding gets suppressed
  141. on xml declaration when null stream passed to constructor.
  142. WriteStartDocument(standalone) tests. Tests for formatting
  143. and indentation. Test for invalid value set on QuoteChar.
  144. 2002-03-22 Duncan Mak <[email protected]>
  145. * AllTests.cs:
  146. * Microsoft.Test.csproj:
  147. * Mono.Test.csproj: Updated to include new files.
  148. * XmlCDataSectionTests.cs: Added to CVS.
  149. * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me
  150. setup a testing environment on VS.NET.
  151. * XmlElementTests.cs: Reformatted.
  152. (TestCloneNode): Added.
  153. * XmlSignificantWhitespaceTests.cs: Added to CVS.
  154. * XmlWhiteSpaceTests.cs: Added to CVS.
  155. 2002-03-21 Kral Ferch <[email protected]>
  156. * XmlDocumentTests.cs: Tessts parent traversal up through
  157. document itself until null. Tests a removed elements next
  158. sibling is null.
  159. * XmlNodeListTests.cs: Tests case where enumerator is on
  160. a node that gets removed from list.
  161. * XmlTextWriterTests.cs: Keeping tests for WriteXXX after
  162. writer is closed up to date as new WriteXXX methods are written.
  163. TestDocumentStart and TestWriteEndElement.
  164. 2002-03-19 Jason Diamond <[email protected]>
  165. * XmlDocumentTests.cs: Added a test to check an element's names after
  166. loading.
  167. 2002-03-17 Kral Ferch <[email protected]>
  168. * XmlDocumentTests.cs: Tests navigation to parents since
  169. that was part of a document.Load() bug reported by Mike Kestner.
  170. * XmlTextWriterTests.cs: Tests for namespaces and prefixes.
  171. 2002-03-17 Kral Ferch <[email protected]>
  172. * XmlDocumentTests.cs: TestOuterXml.
  173. * XmlTextWriterTests.cs: Tests for CData, Close, Comment, Element,
  174. and ProcessingInstruction.
  175. 2002-03-17 Kral Ferch <[email protected]>
  176. * XmlDocumentTests.cs: More LoadXml tests.
  177. * XmlTextWriterTests.cs: Test for invalid Processing Instructions.
  178. 2002-03-14 Kral Ferch <[email protected]>
  179. * XmlTextWriterTests.cs: Added tests TestCData and TestComment.
  180. 2002-03-14 Kral Ferch <[email protected]>
  181. * XmlTextWriterTests.cs: Initial checkin.
  182. 2002-03-12 Kral Ferch <[email protected]>
  183. * XmlNodeListTests.cs: New tests: TestNodeTypesThatCantHaveChildren,
  184. TestZeroChildren, TestOneChild, TestMultipleChildren,
  185. TestAppendChildAffectOnEnumeration, TestRemoveChildAffectOnEnumeration,
  186. TestRemoveOnlyChildAffectOnEnumeration, TestCurrentBeforeFirstNode,
  187. TestCurrentAfterLastNode, TestCurrentDoesntMove, and TestReset. Made
  188. two other tests but not in use yet until RemoveAll is implemented for
  189. attributes and XmlNode.ReplaceChild is implemented. The tests are called
  190. saveTestReplaceChildAffectOnEnumeration and saveTestRemoveAllAffectOnEnumeration.
  191. 2002-03-08 Jason Diamond <[email protected]>
  192. * XmlTextReaderTests.cs: Test MoveToElement and MoveToFirstAttribute.
  193. 2002-03-08 Jason Diamond <[email protected]>
  194. * XmlAttributeTests.cs: Test XmlAttribute child nodes.
  195. 2002-03-08 Kral Ferch <[email protected]>
  196. * XmlNodeListTests.cs: New file.
  197. * AllTests.cs: Added XmlNodeListTests.
  198. 2002/03/08 Nick Drochak <[email protected]>
  199. * System_test.build: Don't build test dll by default. Only build
  200. it when 'make test' is specified.
  201. 2002-03-06 Kral Ferch <[email protected]>
  202. * XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.
  203. * XmlDocumentTests.cs: Started work on some tests for invalid data in
  204. various nodes created by the document.
  205. 2002-03-02 Kral Ferch <[email protected]>
  206. * XmlDocumentTests.cs: New tests TestLoadProcessingInstruction(),
  207. TestLoadCDATA(), and TestLoadComment().
  208. 2002-03-02 Jason Diamond <[email protected]>
  209. * XmlElementTests.cs: New file.
  210. * AllTests.cs: Added XmlElementTests.
  211. 2002-03-02 Jason Diamond <[email protected]>
  212. * XmlTextReaderTests.cs: Test MoveToNextAttribute().
  213. * XmlDocumentTests.cs: Test loading document containing attributes
  214. and text nodes.
  215. 2002-03-02 Mike Kestner <[email protected]>
  216. * XmlAttributeTests.cs : New test suite for attrs.
  217. * AllTests.cs : Add the attr suite.
  218. 2002-03-02 Jason Diamond <[email protected]>
  219. * XmlNamespaceManagerTests.cs: Make sure the XmlNamespaceManager
  220. is using its name table.
  221. * NameTableTests.cs: Make sure NameTable is really returning the
  222. same references.
  223. 2002-02-28 Jason Diamond <[email protected]>
  224. * XmlDocumentTests.cs: Tests for XmlDocument.LoadXml courtesy of
  225. Kral Ferch <[email protected]>.
  226. 2002-02-28 Jason Diamond <[email protected]>
  227. * XmlTextReaderTests.cs: Test for XmlException when parse fail.
  228. 2002-02-27 Martin Baulig <[email protected]>
  229. * System.XML_test.build: Build new executable RunTests.System.XML.exe
  230. which you can use to run the tests on Linux.
  231. * *.cs: Added zero-args constructors.
  232. 2002-02-26 Duncan Mak <[email protected]>
  233. * NameTableTests.cs: Test for System.Xml.NameTable.
  234. 2002-02-26 Jason Diamond <[email protected]>
  235. * XmlTextReaderTests.cs: Test for namespace declarations as
  236. attributes.
  237. * XmlNamespaceManagerTests.cs: Use the newly implemented NameTable
  238. when creating the XmlNamespaceManager. Properly test HasNamespace.
  239. 2002-02-25 Jason Diamond <[email protected]>
  240. * XmlDocumentTests.cs: Added file.
  241. 2002-02-23 Jason Diamond <[email protected]>
  242. * XmlTextReaderTests.cs: Added tests for qualified attributes.
  243. 2002-02-23 Jason Diamond <[email protected]>
  244. * ChangeLog: Added change log to this directory.
  245. * Test.cs: Renamed to XmlTextReaderTests.cs.
  246. * XmlTextReaderTests.cs: Added tests for NamespaceURI property.
  247. * XmlNamespaceManagerTests.cs: Initial tests.