ChangeLog 21 KB

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