ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. 2003-03-13 Martin Willemoes Hansen <[email protected]>
  2. * Removed AllTests.cs and TheTests.cs
  3. * NUnit20ified NameTableTests.cs, SelectNodesTests.cs,
  4. XmlAttributeCollectionTests.cs, XmlAttributeTests.cs,
  5. XmlCDataSectionTests.cs, XmlCharacterDataTests.cs,
  6. XmlCommentTests.cs, XmlDeclarationTests.cs,
  7. XmlDocumentFragmentTests.cs, XmlDocumentTests.cs,
  8. XmlDocumentTypeTests.cs, XmlElementTests.cs,
  9. XmlEntityReferenceTests.cs, XmlNamespaceManagerTests.cs,
  10. XmlNodeListTests.cs, XmlNodeReaderTests.cs,
  11. XmlNodeTests.cs, XmlProcessingInstructionTests.cs,
  12. XmlSignificantWhitespaceTests.cs, XmlTextReaderTests.cs,
  13. XmlTextTests.cs, XmlTextWriterTests.cs,
  14. XmlWhiteSpaceTests.cs, XmlWriterTests.cs,
  15. XPathNavigatorEvaluateTests.cs, XPathNavigatorMatchesTests.cs,
  16. XPathNavigatorTests.cs, makefile.gnu, System.XML_linux_test.args
  17. * Commited Atsushi Eno changes to System.XML_test.build
  18. 2003-02-16 Atsushi Enomoto <[email protected]>
  19. * XmlDocumentTests.cs: added TestLoadExternalUri
  20. * XmlTextReaderTests.cs: added TestAttributeWithEntityReference
  21. 2003-02-09 Piers Haken <[email protected]>
  22. * SelectNodesTests.cs: added TestNamespaceSelect (from Jerome Laban)
  23. 2003-02-02 Atsushi Enomoto <[email protected]>
  24. * XmlTextReaderTests.cs : added TestQuoteChar.
  25. 2003-01-26 Atsushi Enomoto <[email protected]>
  26. * XmlNodeTests.cs : added TestReplaceChild.
  27. * XmlNodeReaderTests.cs : modified TestReadString more complex.
  28. * XmlNamespaceManagerTests.cs : added TestLookupPrefix.
  29. * XmlTextTests.cs : added TestSplitText.
  30. 2003-01-22 Atsushi Enomoto <[email protected]>
  31. * added recent tests below to System.XML_linux_test.args
  32. 2003-01-21 Atsushi Enomoto <[email protected]>
  33. * added XmlNodeReaderTests.cs file and added it to AllTests.cs
  34. 2003-01-19 Atsushi Enomoto <[email protected]>
  35. * XmlElementTests.cs : added TestWriteToDefaultNamespace test.
  36. * XmlNodeTests.cs : added TestGetPrefixOfNamespace test.
  37. 2003-01-18 Atsushi Enomoto <[email protected]>
  38. * added XmlWriterTests.cs file and added it to AllTests.cs
  39. 2003-01-13 Nick Drochak <[email protected]>
  40. * XmlNodeTests.cs: MS.NET doesn't throw an exception here.
  41. 2003-01-11 Atsushi Enomoto <[email protected]>
  42. * XmlElementTests.cs : added TestInnerTextAndEvent test.
  43. (and many coding style fix.)
  44. * XmlTextReaderTests.cs : tiny argument order fix for TestAttributeWithEntityReference test.
  45. 2003-01-08 Atsushi Enomoto <[email protected]>
  46. * XmlDocumentTests.cs : test for attribute value bugfix.
  47. 2003-01-08 Atsushi Enomoto <[email protected]>
  48. * XmlTextReaderTests.cs : test for attribute value bugfix.
  49. 2003-01-02 Atsushi Enomoto <[email protected]>
  50. * SelectNodesTests.cs : added TestAlphabetDigitMixedName.
  51. 2002-12-28 Atsushi Enomoto <[email protected]>
  52. * XmlDocumentTests.cs : Test for bugzilla #34743 (whitespace handling)
  53. 2002-12-28 Atsushi Enomoto <[email protected]>
  54. * XmlDocumentTests.cs : Test for bugzilla #35308 (default ns output)
  55. * XmlElementTests.cs : Test for output of attributes with different NS.
  56. 2002-12-24 Atsushi Enomoto <[email protected]>
  57. * XmlDocumentTests.cs, XmlWhitespaceTests.cs:
  58. fixed whitespace handling (in relation to Ville's patch).
  59. 2002-12-21 Atsushi Enomoto <[email protected]>
  60. * XmlTextWriterTests.cs (TestAttributeNamespacesXmlnsXmlns):
  61. fixed bug in the testcase (in relation to JD Conley's patch).
  62. 2002-12-01 Atsushi Enomoto <[email protected]>
  63. * XmlDeclarationTests.cs (TestValueProperty):
  64. applied patch by David Sheldon
  65. 2002-11-13 Atsushi Enomoto <[email protected]>
  66. * AllTests.cs : added XmlEntityReferenceTests
  67. * XmlDocumentTests.cs : TestCloneNode, TestDocumentWithDoctypeDecl
  68. * XmlDocumentFragmentTests.cs : TestSetInnerXml
  69. * XmlEntityReferenceTests.cs : created
  70. * XmlTextWriterTests.cs : TestWriteAttributes() bugfix (reusing ctx)
  71. * XmlNodeTests.cs : bugfix TestInsertAfter(when refChild = null),
  72. added TestPrependChild
  73. 2002-11-13 Atsushi Enomoto <[email protected]>
  74. * XmlAttributeTests.cs : TestSetInnerAndOuterXml
  75. * XmlSignificantWhitespaceTests.cs : TestDataAndValue
  76. 2002-11-03 Atsushi Enomoto <[email protected]>
  77. * XmlAttributeCollectionTests.cs : TestSetNamedItem,
  78. TestInsertBeforeAfterPrepend, TestRemove
  79. * XmlElementTests.cs : TestWriteToWithDeletedNamespacePrefix,
  80. TestRemoveAttribute()
  81. * XmlDocumentFragmentTests.cs : TestGetInnerXml
  82. 2002-10-29 Atsushi Enomoto <[email protected]>
  83. * XmlElementTests.cs : added an Assert InnerXml with element content.
  84. * XmlNodeTests.cs : TestInsertBefore() and TestInsertAfter()
  85. 2002-10-28 Atsushi Enomoto <[email protected]>
  86. * added XmlDocumentFragmentTests.cs
  87. (including AllTests.cs and System.XML_linux_test.args)
  88. * XmlDocumentTests.cs: added test of XMLDeclaration to TestImportNode()
  89. * XmlElementTests.cs: added check removing children of InnerXml
  90. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  91. * System.XML_linux_test.args: added XPathNavigatorEvaluateTests.cs
  92. * makefile.gnu: pass MONO_PATH when running the tests.
  93. 2002-10-24 Nick Drochak <[email protected]>
  94. * System.XML_test.build: remove legacy build of a standalone exe of the
  95. unit tests
  96. * XmlDocumentTests.cs: Cannot use a URI with Load().
  97. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  98. * XmlTextReaderTests.cs: fixed TestEntityReferenceInsideText.
  99. 2002-10-22 Nick Drochak <[email protected]>
  100. * XmlTextWriterTests.cs: Null is ok when prefix is "xmlns".
  101. 2002-10-21 Duncan Mak <[email protected]>
  102. * XmlTextReaderTests.cs:
  103. * XmlElementTests.cs:
  104. * XmlDocumentTests.cs: Patches from Atsushi Enomoto
  105. <[email protected]>.
  106. 2002-10-18 Duncan Mak <[email protected]>
  107. * XmlDocumentTests.cs: Apply a patch from Atsushi Enomoto
  108. <[email protected]>.
  109. 2002-09-29 Nick Drochak <[email protected]>
  110. * XmlTextReaderTest.cs (AssertEndDocument): Add messages for Asserts()
  111. so we can tell where this is failing.
  112. 2002-09-19 Matt Hunter <[email protected]>
  113. * XmlElementTests.cs: Test for SetAttributeNode(localName, namespaceURI) added.
  114. * XmlAttributeCollectionTests.cs: added TestAppend().
  115. 2002-09-17 Kral Ferch <[email protected]>
  116. * XPathNavigatorEvaluateTests.cs: Tests for string(), concat(),
  117. starts-with(), and contains().
  118. 2002-09-12 Piers Haken <[email protected]>
  119. * XPathNavigatorEvaluateTests.cs: enable string() tests.
  120. 2002-09-12 Piers Haken <[email protected]>
  121. * XPathNavigatorEvaluateTests.cs: enable last() & count() tests.
  122. 2002-09-11 Kral Ferch <[email protected]>
  123. * XPathNavigatorEvaluateTests.cs: Added tests for
  124. local-name, namespace-uri, and string.
  125. 2002-09-11 Kral Ferch <[email protected]>
  126. * Added XPathNavigatorEvaluateTests.cs file to
  127. the MonoMicro.Test project.
  128. * XPathNavigatorEvaluateTests.cs: New file.
  129. * AllTests.cs: Added XPathNavigatorEvaluateTests suite.
  130. * XmlDocumentTests: Added space between namespace decls in
  131. TestGetElementsByTagNameUsingNameSpace. Was causing error
  132. when testing against Microsoft assembly.
  133. * XmlElementTests: Added space between namespace decls in
  134. TestGetElementsByTagNameUsingNameSpace. Was causing error
  135. when testing against Microsoft assembly.
  136. 2002-09-06 Kral Ferch <[email protected]>
  137. * Added XPathNavigatorMatchesTests.cs file to
  138. the MonoMicro.Test project.
  139. 2002-08-22 Jason Diamond <[email protected]>
  140. * AllTests.cs, System.XML_linux_test.args,
  141. XmlAttributeCollectionTests.cs,XmlElementTests.cs: Added test for
  142. RemoveAll and RemoveAllAttributes courtesy of Matt Hunter
  143. <[email protected]>.
  144. 2002-08-22 Jason Diamond <[email protected]>
  145. * XmlElementTests.cs: Correction to previous GetElementsByTagName
  146. patch courtesy of Matt Hunter <[email protected]>.
  147. 2002-08-22 Jason Diamond <[email protected]>
  148. * XmlDocumentTests.cs, XmlElementTests.cs: Added tests for
  149. namespace qualified GetElementsByTagName courtesy of Matt Hunter
  150. <[email protected]>.
  151. 2002-08-19 Jason Diamond <[email protected]>
  152. * XmlDocumentTests.cs, XmlElementTests.cs: Added tests for
  153. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  154. 2002-08-17 Jason Diamond <[email protected]>
  155. * XPathNavigatorMatchesTests.cs: Added tests for absolute patterns
  156. and patterns with predicates.
  157. 2002-08-17 Jason Diamond <[email protected]>
  158. * AllTests.cs: Added XPathNavigatorMatchesTests suite.
  159. * XPathNavigatorMatchesTests.cs: Added.
  160. 2002-08-16 Jason Diamond <[email protected]>
  161. * XmlElementTests.cs: Added test for OuterXml (and WriteTo) for
  162. qualified elements.
  163. 2002-08-16 Jason Diamond <[email protected]>
  164. * makefile.gnu: Added SOURCES_INCLUDE and SOURCES_EXCLUDE variables
  165. to get tests to build with the new build system.
  166. 2002-08-10 Jason Diamond <[email protected]>
  167. * makefile.gnu: Use relative path to NUnitConsole_mono.exe instead of
  168. hardcoding it to /usr/local/bin. Default test suite to AllTests but
  169. allow it to be overridden from the command line.
  170. * XmlTextWriterTests.cs: Split TestWriteString into multiple tests.
  171. Added encoding parameters to all the StreamReaders in
  172. TestBaseConstructorsAndBaseStream. I think this is a bug in Mono's
  173. StreamReader since these aren't required when testing against
  174. Microsoft's.
  175. 2002-08-08 Jason Diamond <[email protected]>
  176. * System.XML_linux_test.args: Added Kral's new test classes.
  177. 2002-08-07 Kral Ferch <[email protected]>
  178. * XmlCharacterDataTests.cs: New file.
  179. * XmlNodeTests.cs: New file.
  180. * AllTests.cs: Added XmlCharacterDataTests and XmlNodeTests.
  181. * XmlDocumentTests.cs: Added tests for NodeChanging, NodeChanged,
  182. NodeInserting, NodeInserted, NodeRemoving, and NodeRemoved events.
  183. 2002-08-03 Jason Diamond <[email protected]>
  184. * makefile.gnu: Added.
  185. * System.XML_linux_test.args: Added.
  186. 2002-07-12 Piers Haken <[email protected]
  187. * SelectNodesTests.cs: Added TestUnion (bug #27548)
  188. 2002-07-11 Jason Diamond <[email protected]>
  189. * SelectNodesTests.cs: Added.
  190. * AllTests.cs: Added SelectNodesTests to suite.
  191. 2002-07-11 Piers Haken <[email protected]>
  192. * XmlElementTests.cs: added TestCreateElement3WithNullNamespace
  193. 2002-06-24 Jason Diamond <[email protected]>
  194. * XPathScannerTests.cs: Removed.
  195. * System.XML_test.build: Removed tests for XPathScanner.
  196. 2002-05-27 Jason Diamond <[email protected]>
  197. * XPathNavigatorTests.cs: Added file to directory.
  198. * AllTests.cs: Added XPathNavigatorTests to suite.
  199. * XmlTextReaderTests.cs: Added test to make sure attributes are ordered
  200. like Microsoft's parser does it.
  201. 2002-05-05 Nick Drochak <[email protected]>
  202. * ChangeLog: Update build file to run correct class in the test dll.
  203. 2002-05-05 Nick Drochak <[email protected]>
  204. * AllTests.cs
  205. * NameTableTests.cs
  206. * TheTests.cs
  207. * XPathScannerTests.cs
  208. * XmlAttributeTests.cs
  209. * XmlCDataSectionTests.cs
  210. * XmlCommentTests.cs
  211. * XmlDeclarationTests.cs
  212. * XmlDocumentTests.cs
  213. * XmlDocumentTypeTests.cs
  214. * XmlElementTests.cs
  215. * XmlNamespaceManagerTests.cs
  216. * XmlNodeListTests.cs
  217. * XmlProcessingInstructionTests.cs
  218. * XmlSignificantWhitespaceTests.cs
  219. * XmlTextReaderTests.cs
  220. * XmlTextTests.cs
  221. * XmlTextWriterTests.cs
  222. * XmlWhiteSpaceTests.cs: Use same namespace style as corlib tests.
  223. Changed Ximian.Mono.Tests to MonoTests.System.Xml
  224. 2002-04-08 Kral Ferch <[email protected]>
  225. * AllTests.cs: added XmlProcessingInstructionTests and XmlTextTests.
  226. * MonoMicro.Test.csproj: Added XmlProcessingInstructionTests.cs and
  227. XmlTextTests.cs.
  228. * XmlAttributeTests.cs: Added TestAttributeInnerAndOuterXml.
  229. * XmlCDataSectionTests.cs: Added TestXmlCDataSectionInnerAndOuterXml.
  230. * XmlCommentTests.cs: Added TestXmlCommentInnerAndOuterXml.
  231. * XmlDeclarationTests.cs: Added TestInnerAndOuterXml.
  232. * XmlDocumentTests.cs: Added TestInnerAndOuterXml.
  233. * XmlElementTests.cs: Added TestInnerAndOuterXml.
  234. * XmlProcessingInstructionTests.cs: Initial check-in.
  235. * XmlSignificantWhitespaceTests.cs: Added TestInnerAndOuterXml.
  236. * XmlTextTests.cs: Initial check-in.
  237. * XmlTextWriterTests.cs: Added TestWriteRaw, TestWriteRawInvalidInAttribute,
  238. and TestXmlSpaceRaw.
  239. * XmlWhiteSpacesTests.cs: Added TestInnerAndOuterXml.
  240. 2002-04-05 Kral Ferch <[email protected]>
  241. * XmlDocumentTests.cs: CreateNode tests.
  242. 2002-04-01 Kral Ferch <[email protected]>
  243. * XmlTextWriterTests.cs: Tests for WriteEndDocument and WriteFullEndElement.
  244. 2002-03-31 Kral Ferch <[email protected]>
  245. * XmlTextWriterTests.cs: Tests for LookupPrefix, WriteBase64,
  246. and WriteCharEntity.
  247. 2002-03-31 Kral Ferch <[email protected]>
  248. * XmlTextWriterTests.cs: Finished XmlLang, XmlSpace, and
  249. Attribute namespace declaration tests.
  250. 2002-03-29 Kral Ferch <[email protected]>
  251. * XmlTextWriterTests.cs: XmlLang and XmlSpace tests.
  252. 2002-03-29 Kral Ferch <[email protected]>
  253. * XmlTextWriterTests.cs: Working on Attributes.
  254. 2002-03-28 Duncan Mak <[email protected]>
  255. * XmlDeclarationTests.cs (TestConstructor):
  256. * XmlDocumentTypeTests.cs (TestAppendChild):
  257. * XmlSignificantWhitespaceTests.cs (TestXmlWhitespaceConstructor):
  258. * XmlWhiteSpaceTests.cs (TestXmlWhitespaceConstructor): Fixed the
  259. test for catching Exceptions.
  260. 2002-03-26 Jason Diamond <[email protected]>
  261. * AllTests.cs:
  262. * Mono.Test.csproj: Removed XPathScanner tests.
  263. * System.XML_test.build: Test XPathScanner separately.
  264. 2002-03-26 Duncan Mak <[email protected]>
  265. * AllTests.cs:
  266. * Microsoft.Test.csproj:
  267. * Mono.Test.csproj: Updated to include new test,
  268. XmlDocumentTypeTests.
  269. * XmlDocumentTypeTests.cs: New testsuite for XmlDocumentType class.
  270. * XmlCommentTests.cs (TestXmlNodeBaseProperties): Move the
  271. XmlNode.Value test in here.
  272. 2002-03-26 Jason Diamond <[email protected]>
  273. * XPathScannerTests.cs: More location path tests.
  274. 2002-03-25 Jason Diamond <[email protected]>
  275. * AllTests.cs:
  276. * Microsoft.Test.csproj:
  277. * Mono.Test.csproj: Updated to include new test, XmlScannerTests.
  278. * XPathScannerTests.cs: Added new tests for XPathScanner class.
  279. 2002-03-25 Duncan Mak <[email protected]>
  280. * AllTests.cs:
  281. * Microsoft.Test.csproj:
  282. * Mono.Test.csproj: Updated to include new test,
  283. XmlDeclarationTests.
  284. * XmlDeclarationTests.cs: Added new test for XmlDeclaration class.
  285. 2002-03-23 Kral Ferch <[email protected]>
  286. * XmlTextWriterTests.cs: Tests for BaseStream,
  287. Namespaces = false, and WriteState.
  288. 2002-03-23 Kral Ferch <[email protected]>
  289. * XmlTextWriterTests.cs: constructor tests with
  290. different encodings to test that encoding gets suppressed
  291. on xml declaration when null stream passed to constructor.
  292. WriteStartDocument(standalone) tests. Tests for formatting
  293. and indentation. Test for invalid value set on QuoteChar.
  294. 2002-03-22 Duncan Mak <[email protected]>
  295. * AllTests.cs:
  296. * Microsoft.Test.csproj:
  297. * Mono.Test.csproj: Updated to include new files.
  298. * XmlCDataSectionTests.cs: Added to CVS.
  299. * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me
  300. setup a testing environment on VS.NET.
  301. * XmlElementTests.cs: Reformatted.
  302. (TestCloneNode): Added.
  303. * XmlSignificantWhitespaceTests.cs: Added to CVS.
  304. * XmlWhiteSpaceTests.cs: Added to CVS.
  305. 2002-03-21 Kral Ferch <[email protected]>
  306. * XmlDocumentTests.cs: Tessts parent traversal up through
  307. document itself until null. Tests a removed elements next
  308. sibling is null.
  309. * XmlNodeListTests.cs: Tests case where enumerator is on
  310. a node that gets removed from list.
  311. * XmlTextWriterTests.cs: Keeping tests for WriteXXX after
  312. writer is closed up to date as new WriteXXX methods are written.
  313. TestDocumentStart and TestWriteEndElement.
  314. 2002-03-19 Jason Diamond <[email protected]>
  315. * XmlDocumentTests.cs: Added a test to check an element's names after
  316. loading.
  317. 2002-03-17 Kral Ferch <[email protected]>
  318. * XmlDocumentTests.cs: Tests navigation to parents since
  319. that was part of a document.Load() bug reported by Mike Kestner.
  320. * XmlTextWriterTests.cs: Tests for namespaces and prefixes.
  321. 2002-03-17 Kral Ferch <[email protected]>
  322. * XmlDocumentTests.cs: TestOuterXml.
  323. * XmlTextWriterTests.cs: Tests for CData, Close, Comment, Element,
  324. and ProcessingInstruction.
  325. 2002-03-17 Kral Ferch <[email protected]>
  326. * XmlDocumentTests.cs: More LoadXml tests.
  327. * XmlTextWriterTests.cs: Test for invalid Processing Instructions.
  328. 2002-03-14 Kral Ferch <[email protected]>
  329. * XmlTextWriterTests.cs: Added tests TestCData and TestComment.
  330. 2002-03-14 Kral Ferch <[email protected]>
  331. * XmlTextWriterTests.cs: Initial checkin.
  332. 2002-03-12 Kral Ferch <[email protected]>
  333. * XmlNodeListTests.cs: New tests: TestNodeTypesThatCantHaveChildren,
  334. TestZeroChildren, TestOneChild, TestMultipleChildren,
  335. TestAppendChildAffectOnEnumeration, TestRemoveChildAffectOnEnumeration,
  336. TestRemoveOnlyChildAffectOnEnumeration, TestCurrentBeforeFirstNode,
  337. TestCurrentAfterLastNode, TestCurrentDoesntMove, and TestReset. Made
  338. two other tests but not in use yet until RemoveAll is implemented for
  339. attributes and XmlNode.ReplaceChild is implemented. The tests are called
  340. saveTestReplaceChildAffectOnEnumeration and saveTestRemoveAllAffectOnEnumeration.
  341. 2002-03-08 Jason Diamond <[email protected]>
  342. * XmlTextReaderTests.cs: Test MoveToElement and MoveToFirstAttribute.
  343. 2002-03-08 Jason Diamond <[email protected]>
  344. * XmlAttributeTests.cs: Test XmlAttribute child nodes.
  345. 2002-03-08 Kral Ferch <[email protected]>
  346. * XmlNodeListTests.cs: New file.
  347. * AllTests.cs: Added XmlNodeListTests.
  348. 2002/03/08 Nick Drochak <[email protected]>
  349. * System_test.build: Don't build test dll by default. Only build
  350. it when 'make test' is specified.
  351. 2002-03-06 Kral Ferch <[email protected]>
  352. * XmlAttributeTests.cs: Fixed bug in TestHasChildNodes test.
  353. * XmlDocumentTests.cs: Started work on some tests for invalid data in
  354. various nodes created by the document.
  355. 2002-03-02 Kral Ferch <[email protected]>
  356. * XmlDocumentTests.cs: New tests TestLoadProcessingInstruction(),
  357. TestLoadCDATA(), and TestLoadComment().
  358. 2002-03-02 Jason Diamond <[email protected]>
  359. * XmlElementTests.cs: New file.
  360. * AllTests.cs: Added XmlElementTests.
  361. 2002-03-02 Jason Diamond <[email protected]>
  362. * XmlTextReaderTests.cs: Test MoveToNextAttribute().
  363. * XmlDocumentTests.cs: Test loading document containing attributes
  364. and text nodes.
  365. 2002-03-02 Mike Kestner <[email protected]>
  366. * XmlAttributeTests.cs : New test suite for attrs.
  367. * AllTests.cs : Add the attr suite.
  368. 2002-03-02 Jason Diamond <[email protected]>
  369. * XmlNamespaceManagerTests.cs: Make sure the XmlNamespaceManager
  370. is using its name table.
  371. * NameTableTests.cs: Make sure NameTable is really returning the
  372. same references.
  373. 2002-02-28 Jason Diamond <[email protected]>
  374. * XmlDocumentTests.cs: Tests for XmlDocument.LoadXml courtesy of
  375. Kral Ferch <[email protected]>.
  376. 2002-02-28 Jason Diamond <[email protected]>
  377. * XmlTextReaderTests.cs: Test for XmlException when parse fail.
  378. 2002-02-27 Martin Baulig <[email protected]>
  379. * System.XML_test.build: Build new executable RunTests.System.XML.exe
  380. which you can use to run the tests on Linux.
  381. * *.cs: Added zero-args constructors.
  382. 2002-02-26 Duncan Mak <[email protected]>
  383. * NameTableTests.cs: Test for System.Xml.NameTable.
  384. 2002-02-26 Jason Diamond <[email protected]>
  385. * XmlTextReaderTests.cs: Test for namespace declarations as
  386. attributes.
  387. * XmlNamespaceManagerTests.cs: Use the newly implemented NameTable
  388. when creating the XmlNamespaceManager. Properly test HasNamespace.
  389. 2002-02-25 Jason Diamond <[email protected]>
  390. * XmlDocumentTests.cs: Added file.
  391. 2002-02-23 Jason Diamond <[email protected]>
  392. * XmlTextReaderTests.cs: Added tests for qualified attributes.
  393. 2002-02-23 Jason Diamond <[email protected]>
  394. * ChangeLog: Added change log to this directory.
  395. * Test.cs: Renamed to XmlTextReaderTests.cs.
  396. * XmlTextReaderTests.cs: Added tests for NamespaceURI property.
  397. * XmlNamespaceManagerTests.cs: Initial tests.