ChangeLog 20 KB

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