ChangeLog 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309
  1. 2008-04-17 Atsushi Enomoto <[email protected]>
  2. * XmlElementTests.cs : added test for bug #380720.
  3. * XmlAttributeTests.cs : numbered some assertions.
  4. 2008-04-02 Atsushi Enomoto <[email protected]>
  5. * XsdValidatingReaderTests.cs : added test for bug #376395.
  6. 2008-03-31 Gert Driesen <[email protected]>
  7. * XmlDocumentTests.cs: Fixed line endings.
  8. * XmlAttributeCollectionTests.cs: Fixed line endings.
  9. * XmlDocumentEventTests.cs: Fixed line endings.
  10. * XmlNodeTests.cs: Fixed line endings.
  11. * XsdValidatingReaderTests.cs: Fixed line endings.
  12. * XmlDocumentTypeTests.cs: Fixed line endings.
  13. * XmlEntityReferenceTests.cs: Fixed line endings.
  14. 2008-03-31 Gert Driesen <[email protected]>
  15. * XmlAttributeTests.cs: Use Assert instead of deprecated Assertion
  16. class. Improved a few tests. Added link to MS bug report for regression
  17. in .NET 2.0. Numbered tests.
  18. 2008-02-19 Atsushi Enomoto <[email protected]>
  19. * XmlParserContextTests.cs : they are working. case #3 should not
  20. try to parse broken internalSubset (we do not allow broken
  21. intsubset and it is almost no worthy of assuring only-nominal
  22. .net compat that such broken internalSubset should be allowed).
  23. 2008-01-25 Atsushi Enomoto <[email protected]>
  24. * XmlReaderCommonTests.cs : added test for bug #347768.
  25. 2008-01-15 Gert Driesen <[email protected]>
  26. * XmlParserContextTests.cs: Added ctor tests.
  27. 2007-12-06 Atsushi Enomoto <[email protected]>
  28. * XmlUrlResolverTests.cs : fixed test; file://file.txt is to access
  29. such a server whose (domain) name is "file.txt", which is actually
  30. an absolute URI. Remove "regression" in the nunit test.
  31. 2007-11-12 Atsushi Enomoto <[email protected]>
  32. * XsdValidatingReaderTests.cs : added test for #339934.
  33. 2007-11-09 Atsushi Enomoto <[email protected]>
  34. * XmlConvertTests.cs : added test for #339004 and more.
  35. 2007-10-31 Gert Driesen <[email protected]>
  36. * XmlConvertTests.cs: Added link to MS bug report.
  37. 2007-10-31 Atsushi Enomoto <[email protected]>
  38. * XsdValidatingReaderTests.cs : added test for #336625.
  39. 2007-10-30 Atsushi Enomoto <[email protected]>
  40. * XmlConvertTest.cs : added test for DateTime roundtrip.
  41. 2007-10-19 Atsushi Enomoto <[email protected]>
  42. * XmlReaderCommonTests.cs : added test for bug #334752.
  43. 2007-09-28 Atsushi Enomoto <[email protected]>
  44. * XmlWriterTests.cs : added WriteNodeXPathNavigatorAttribute().
  45. 2007-09-27 Atsushi Enomoto <[email protected]>
  46. * XmlWriterTests.cs : added test for WriteValue(object).
  47. * XmlTextWriterTests.cs : added WriteQualifiedName() test with empty
  48. namespace.
  49. 2007-08-13 Atsushi Enomoto <[email protected]>
  50. * XmlWriterSettingsTests.cs : added test for extraneous newline on
  51. OmitXmlDeclaration mode.
  52. 2007-08-02 Atsushi Enomoto <[email protected]>
  53. * XsdValidatingReaderTests.cs : test for bug #82010.
  54. 2007-08-02 Atsushi Enomoto <[email protected]>
  55. * XsdValidatingReaderTests.cs : another test posted on bug #82183.
  56. 2007-07-17 Atsushi Enomoto <[email protected]>
  57. * XsdValidatingReaderTests.cs : added test for bug #82099.
  58. 2007-07-12 Atsushi Enomoto <[email protected]>
  59. * XmlWriterTests.cs : added test for bug #82051.
  60. 2007-07-11 Atsushi Enomoto <[email protected]>
  61. * XmlReaderSettingsTests.cs : added test for bug #82062.
  62. 2007-06-30 Gert Driesen <[email protected]>
  63. * XmlTextReaderTests.cs: Enable ProhibitDtd test on 1.0 profile too.
  64. Fixed line endings.
  65. 2007-06-13 Atsushi Enomoto <[email protected]>
  66. * XmlDocumentFragmentTests.cs : added InnerText().
  67. * XmlWriterSettingsTests.cs : replace \r\n with \n to make it pass
  68. on windows.
  69. 2007-05-31 Atsushi Enomoto <[email protected]>
  70. * XmlWriterSettingsTests.cs : added test for NewLineOnAttributes.
  71. 2007-05-26 Gert Driesen <[email protected]>
  72. * XmlWriterTests.cs: Renamed Close* tests to Create*, and improved
  73. their coverage. Commented out newly introduced tests since they fail
  74. on Mono. Added NotWorking Create_XmlWriter2 test.
  75. 2007-05-16 Gert Driesen <[email protected]>
  76. * XmlWriterTests.cs: Added tests for Close that verify closing of
  77. underlying stream.
  78. 2007-04-27 Atsushi Enomoto <[email protected]>
  79. * XsdValidatingReaderTests.cs : added test for bug #81460.
  80. 2007-04-25 Atsushi Enomoto <[email protected]>
  81. * XmlConvertTests.cs : added test for MaxValue serialization with
  82. every XmlDateTimeSerializationMode.
  83. 2007-04-25 Atsushi Enomoto <[email protected]>
  84. * XmlReaderCommonTests.cs : added test for bug #81451.
  85. 2007-04-24 Atsushi Enomoto <[email protected]>
  86. * XsdValidatingReaderTests.cs : added test for bug #81360.
  87. 2007-04-03 Atsushi Enomoto <[email protected]>
  88. * XmlTextReaderTests.cs : added test for bug #81294.
  89. 2007-03-05 Atsushi Enomoto <[email protected]>
  90. * XmlReaderSettingsTests.cs : added test for bug #81000.
  91. 2007-02-07 Atsushi Enomoto <[email protected]>
  92. * XmlReaderCommonTests.cs : added test for bug #80848.
  93. 2007-02-07 Atsushi Enomoto <[email protected]>
  94. * XmlReaderCommonTests.cs : added ReadElementContentAsStringEmpty().
  95. 2006-12-20 Atsushi Enomoto <[email protected]>
  96. * XmlNodeTests.cs : added tests for bug #80331.
  97. 2006-12-19 Atsushi Enomoto <[email protected]>
  98. * XmlTextReaderTests.cs : added test for bug #80308.
  99. 2006-12-12 Atsushi Enomoto <[email protected]>
  100. * XmlNodeTests.cs : added test for bug #80233.
  101. 2006-12-12 Atsushi Enomoto <[email protected]>
  102. * XmlValidatingReaderTests.cs : #if NET_2_0 was missing.
  103. 2006-12-12 Atsushi Enomoto <[email protected]>
  104. * XmlReaderSettingsTests.cs : added test to make sure that Create()
  105. returns a validating XmlReader.
  106. 2006-12-12 Atsushi Enomoto <[email protected]>
  107. * XmlValidatingReaderTests.cs : added test for bug #80231.
  108. 2006-12-11 Atsushi Enomoto <[email protected]>
  109. * XmlDocumentTests.cs : make sure to call overriden CreateAttribute()
  110. when loading from XmlReader.
  111. 2006-12-05 Atsushi Enomoto <[email protected]>
  112. * XmlNodeTests.cs : added another test for GetPrefixOfNamespace().
  113. 2006-11-20 Atsushi Enomoto <[email protected]>
  114. * XmlWriterSettingsTests.cs : added tests for relationship between
  115. ConformanceLevel, OmitXmlDeclaration and WriteStartDocument().
  116. 2006-11-17 Atsushi Enomoto <[email protected]>
  117. * XmlReaderSettingsTests.cs : added test for bug #79224; it does not
  118. load external schemas when validation mode is none.
  119. 2006-11-14 Atsushi Enomoto <[email protected]>
  120. * XmlReaderSettingsTests.cs : added validation event handler test
  121. case.
  122. 2006-11-13 Atsushi Enomoto <[email protected]>
  123. * XmlReaderSettingsTests.cs : added custom resolver case for primary
  124. XML stream (custom resolver is indeed used and here it should cause
  125. error).
  126. 2006-11-13 Atsushi Enomoto <[email protected]>
  127. * XmlReaderSettingsTests.cs : added NullResolver() case.
  128. 2006-10-27 Atsushi Enomoto <[email protected]>
  129. * XsdValidatingReaderTests.cs : the previous test raises different
  130. exception in 2.0.
  131. 2006-10-27 Atsushi Enomoto <[email protected]>
  132. * XsdValidatingReaderTests.cs : added bug #79650 case.
  133. 2006-10-27 Atsushi Enomoto <[email protected]>
  134. * XmlTextReaderTests.cs : added bug #79683 case.
  135. 2006-09-26 Atsushi Enomoto <[email protected]>
  136. * XmlDeclarationTests.cs : added bug #79496 case.
  137. 2006-09-21 Atsushi Enomoto <[email protected]>
  138. * XmlDocumentTests.cs : added bug #79468 case.
  139. 2006-09-19 Atsushi Enomoto <[email protected]>
  140. * XmlElementTests.cs : added test for #79420.
  141. * XmlAttributeTests.cs : added similar test.
  142. * XmlDocumentTests.cs : fix warnings.
  143. 2006-09-04 Atsushi Enomoto <[email protected]>
  144. * XmlReaderCommonTests.cs : added test for bug #79268.
  145. 2006-09-01 Atsushi Enomoto <[email protected]>
  146. * XmlTextWriterTests.cs : added test for bug #79047
  147. 2006-08-26 Atsushi Enomoto <[email protected]>
  148. * XmlDocumentTests.cs : added test for bug #79163.
  149. 2006-08-14 Atsushi Enomoto <[email protected]>
  150. * XmlTextReaderTests.cs : added test for whitespace node value which
  151. comes after a text declaration in XML external entity (i.e. .ctor()
  152. with XmlNodeType.Element).
  153. 2006-08-10 Atsushi Enomoto <[email protected]>
  154. * XmlTextWriterTests.cs : more indentation tests.
  155. 2006-08-07 Atsushi Enomoto <[email protected]>
  156. * XmlTextWriterTests.cs : test for #79019.
  157. 2006-07-28 Atsushi Enomoto <[email protected]>
  158. * XmlTextWriterTests.cs : added test case for comments, PIs and
  159. indentation.
  160. 2006-07-25 Atsushi Enomoto <[email protected]>
  161. * XmlConvertTest.cs :
  162. Added TimeSpan conversion test for min/max values.
  163. 2006-06-26 Atsushi Enomoto <[email protected]>
  164. * XmlReaderCommonTests.cs : added test for bug #78706.
  165. 2006-06-08 Atsushi Enomoto <[email protected]>
  166. * XmlTextWriterTests.cs : added test for bug #78598.
  167. 2006-05-09 Atsushi Enomoto <[email protected]>
  168. * XmlAttributeTests.cs : added NonEmptyPrefixWithEmptyNS().
  169. 2006-04-21 Atsushi Enomoto <[email protected]>
  170. * XmlTextWriterTests.cs : test for bug #78148.
  171. 2006-04-14 Atsushi Enomoto <[email protected]>
  172. * XmlReaderCommonTests.cs : added test for ReadElementContentAs()
  173. with argument typeof(object).
  174. 2006-04-12 Atsushi Enomoto <[email protected]>
  175. * XmlReaderSettingsTests.cs :
  176. Added CreateValidatorFromNonIXmlNamespaceResolver() which is
  177. uncovered by NVDL validator.
  178. * XmlDefaultReader.cs : new file for above.
  179. 2006-04-06 Atsushi Enomoto <[email protected]>
  180. * XmlReaderCommonTests.cs : added test for
  181. ReadElementContentAsString() and empty element.
  182. 2006-04-05 Atsushi Enomoto <[email protected]>
  183. * XmlWriterSettingsTest.cs : added tests on set_Encoding(),
  184. set_NewLineChars() and OmitXmlDeclaration.
  185. 2006-03-08 Atsushi Enomoto <[email protected]>
  186. * XmlReaderCommonTests.cs : Added tests for ReadContentAsString() and
  187. ReadElementContentAsString().
  188. 2006-02-24 Atsushi Enomoto <[email protected]>
  189. * XmlTextWriterTests.cs : added test for bug #77623. Also fixed
  190. WriteString() test which failed to fail (Assert.Fail).
  191. 2006-02-22 Atsushi Enomoto <[email protected]>
  192. * XmlTextWriterTests.cs : added invalid character processing test.
  193. 2006-02-20 Atsushi Enomoto <[email protected]>
  194. * XmlReaderCommonTests.cs : added custom assertion overload that takes
  195. test label.
  196. * XmlNodeReaderTests.cs : labeled some.
  197. * XmlTextWriterTests.cs :
  198. Changed the semantics of AttributeNamespacesXmlnsXmlns() and
  199. removed NotDotNet (in contrast this test should fail with previous
  200. version of XmlTextWriter). See the code comment for details.
  201. Added WriteQualifiedNameXmlnsError().
  202. 2006-02-14 Atsushi Enomoto <[email protected]>
  203. * XmlTextReaderTests.cs : added WhitespaceHandling tests.
  204. 2006-02-14 Atsushi Enomoto <[email protected]>
  205. * XmlTextWriterTests.cs : tiny test name fix, as it does not actually
  206. test WriteString().
  207. 2006-02-14 Atsushi Enomoto <[email protected]>
  208. * XmlTextWriterTests.cs : added test WriteRaw("") closes open tag.
  209. 2006-02-14 Atsushi Enomoto <[email protected]>
  210. * XmlTextWriterTests.cs : numbered some tests and added some comments.
  211. 2006-01-25 Atsushi Enomoto <[email protected]>
  212. * XmlConvertTests.cs : added test for bug #77350.
  213. 2006-01-16 Atsushi Enomoto <[email protected]>
  214. * XmlConvertTests.cs : added test for bug #77252.
  215. 2006-01-13 Atsushi Enomoto <[email protected]>
  216. * XsdValidatingReaderTests.cs : test from bug #77241.
  217. 2006-01-13 Atsushi Enomoto <[email protected]>
  218. * XmlTextWriterTests.cs : added some tests for XMLdecl state check.
  219. 2006-01-12 Atsushi Enomoto <[email protected]>
  220. * XmlTextWriterTests.cs : Split AutoCreatePrefixes() and marked as
  221. Ignore rather than NotWorking. Also it is not for bug #77086 and
  222. #77077 (they were fixed). See bug #77088.
  223. 2006-01-12 Atsushi Enomoto <[email protected]>
  224. * XmlTextWriterTests.cs : re-enabled WriteNmToken_InvalidChars().
  225. 2006-01-12 Atsushi Enomoto <[email protected]>
  226. * XmlTextWriterTests.cs : re-enabled bug #77094 related tests.
  227. 2006-01-06 Atsushi Enomoto <[email protected]>
  228. * XmlWriterTests.cs : added tests for WriteNode(XPathNavigator, bool)
  229. as well as XPathNavigator.WriteSubtree(XmlWriter).
  230. 2006-01-06 Atsushi Enomoto <[email protected]>
  231. * XsdValidatingReaderTests.cs : test for ReadTypeValue() that it
  232. does not ignore whitespace nodes, and it does not normalize string
  233. incorrectly.
  234. 2006-01-06 Atsushi Enomoto <[email protected]>
  235. * XsdValidatingReaderTests.cs : test for ReadTypeValue() with simple
  236. type restriction.
  237. 2006-01-05 Gert Driesen <[email protected]>
  238. * XmlElementTests.cs: Improved tests for setting prefix to null
  239. or zero-length string. On 2.0 profile, setting prefix to null should
  240. not result in ArgumentNullException.
  241. * XmlTextWriterTests.cs: Enabled WriteNmToken tests and
  242. WriteWhitespace tests for null or zero-length value.
  243. 2006-01-05 Atsushi Enomoto <[email protected]>
  244. * XmlTextWriterTests.cs : removed silly part from
  245. WriteStartElement_XmlPrefix (). We are not reproducing MS bugs.
  246. (kept remaining part of this test; see if it makes sense after
  247. bug #77094 got fixed).
  248. 2005-12-29 Gert Driesen <[email protected]>
  249. * XmlTextWriterTests.cs: Do not yet enable tests for WriteWhitespace
  250. with null or zero-length value (await approval for XmlTextWriter
  251. change from Atsushi).
  252. 2005-12-27 Gert Driesen <[email protected]>
  253. * XmlTextWriterTests.cs: Do not yet enable tests for WriteNmToken
  254. with null or zero-length value (await approval for XmlTextWriter
  255. change from Atsushi).
  256. 2005-12-27 Gert Driesen <[email protected]>
  257. * XmlTextWriterTests.cs: Added tests for WriteWhitespace and
  258. WriteNmToken.
  259. 2005-12-27 Gert Driesen <[email protected]>
  260. * NameTableTests.cs: Added additional tests for Add and Get methods.
  261. 2005-12-27 Gert Driesen <[email protected]>
  262. * XmlTextWriterTests.cs: Allow all tests to pass on .NET 1.1.
  263. 2005-12-26 Atsushi Enomoto <[email protected]>
  264. * XmlTextWriterTests.cs : enabled
  265. WriteStartElement_Prefix_EmptyNamespace() and
  266. NamespacesPrefixWithEmptyAndNullNamespaceEmpty().
  267. 2005-12-26 Atsushi Enomoto <[email protected]>
  268. * XmlElementTests.cs : Patch by Vorobiev Maksim.
  269. - setting null to Prefix should raise ArgumentNullException.
  270. - setting String.Empty to Prefix should be allowed.
  271. 2005-12-26 Atsushi Enomoto <[email protected]>
  272. * XsdValidatingReaderTests.cs : test for multi URLs in
  273. schemaLocation. Test by Vorobiev Maskim.
  274. 2005-12-26 Gert Driesen <[email protected]>
  275. * XmlElementTests.cs: Fixed line endings.
  276. 2005-12-26 Gert Driesen <[email protected]>
  277. * XmlTextWriterTests.cs: Renamed tests to avoid ambiguity, and
  278. renumbered some tests. Added tests for WriteStartElement and
  279. WriteElementString for zero-length and null local names.
  280. Added tests bugs #77093, #77094 and #77095.
  281. 2005-12-26 Gert Driesen <[email protected]>
  282. * XmlNamespaceManagerTests.cs: Added tests for xml prefix.
  283. 2005-12-23 Atsushi Enomoto <[email protected]>
  284. * XmlTextWriterTests.cs : XmlSpace_Valid() is working now.
  285. 2005-12-23 Atsushi Enomoto <[email protected]>
  286. * XmlTextWriterTests.cs : XmlNs_Valid2() is working now.
  287. 2005-12-23 Gert Driesen <[email protected]>
  288. * XmlTextWriterTests.cs: Fixed line endings. Enabled XmlPrefix_ValidMS
  289. test. Added bug numbers to test cases.
  290. 2005-12-23 Gert Driesen <[email protected]>
  291. * XmlTextWriterTests.cs: Improved coverage of xml prefix tests.
  292. 2005-12-16 Gert Driesen <[email protected]>
  293. * XmlTextWriterTests.cs: Fixed some tests that caught exception to
  294. become useful. Added few tests that fail on Mono.
  295. 2005-12-16 Gert Driesen <[email protected]>
  296. * XmlTextWriterTests.cs: No longer derive from deprecated Assertion
  297. class. Added WriteDocType tests.
  298. * XmlWriterTests.cs: No longer derive from deprecated Assertion class.
  299. 2005-12-15 Konstantin Triger <[email protected]>
  300. * XmlTextWriterTests.cs: added WriteCDataNull test.
  301. 2005-12-14 Atsushi Enomoto <[email protected]>
  302. * XmlDocumentTests.cs : (CreateNodeNodeTypeName) the previous fix was
  303. wrong; ArgumentException is the expected exception (it anyways won't
  304. work under MS.NET 2.0).
  305. * XmlNodeTests.cs : added labels to assertions. another NotDotNet case.
  306. * XmlAttributeTests.cs : ditto.
  307. 2005-12-14 Atsushi Enomoto <[email protected]>
  308. * XmlDocumentTests.cs, XmlAttributeCollectionTests.cs
  309. XmlElementTests.cs, XmlCharacterDataTests.cs :
  310. Marked NotDotNet for some tests broken under 2.0 (MS bugs).
  311. Marked Ignore for some tests which originally does not make sense.
  312. Changed types in ExpectedException for some tests under 2.0.
  313. 2005-12-12 Atsushi Enomoto <[email protected]>
  314. * XmlAssert.cs : new file.
  315. 2005-12-12 Atsushi Enomoto <[email protected]>
  316. * XmlReaderCommonTests.cs : enabled MoveToNextSibling() tests.
  317. 2005-12-12 Atsushi Enomoto <[email protected]>
  318. * XmlReaderCommonTests.cs : added several tests for 2.0 methods.
  319. 2005-12-09 Atsushi Enomoto <[email protected]>
  320. * XmlTextReaderTests.cs : added test for Encoding property.
  321. 2005-12-09 Atsushi Enomoto <[email protected]>
  322. * XmlReaderCommonTests.cs : added tests for ReadToDescendant() and
  323. ReadToFollowing().
  324. 2005-12-09 Atsushi Enomoto <[email protected]>
  325. * XmlReaderSettingsTests.cs : added some ConformanceLevel tests.
  326. Added CreateClonesSettings() to make sure XmlReader.Create() clones
  327. XmlReaderSettings.
  328. 2005-12-08 Atsushi Enomoto <[email protected]>
  329. * XmlReaderSettingsTests.cs : (DefaultValue)
  330. Added assertion label everywhere.
  331. * XmlWriterTests.cs : WriteNodeError is broken under MS.NET 2.0 (it
  332. should cause an error).
  333. 2005-12-08 Atsushi Enomoto <[email protected]>
  334. * XmlReaderSettingsTests.cs : SetSchemas() should not cause an error.
  335. Added SetSchemasNull() as well.
  336. * XmlUrlResolverTests.cs : (ResolveUriWithNullArgs)
  337. expect ArgumentNullException instead of ArgumentException.
  338. This is a fix in .NET 2.0.
  339. 2005-12-08 Atsushi Enomoto <[email protected]>
  340. * XsdParticleValidationTests.cs : ValidateRootElementOnlyInvalid()
  341. does not throw validation exception under MS 2.0, this NotDotNet.
  342. 2005-12-08 Atsushi Enomoto <[email protected]>
  343. * XmlReaderCommonTests.cs : use ProhibitDtd=false in CreateSimple()
  344. and added CreateSimpleProhibitDtd().
  345. 2005-11-09 Atsushi Enomoto <[email protected]>
  346. * XmlWriterSettingsTests.cs : NormalizeNewLines does not exist anymore
  347. 2005-11-09 Atsushi Enomoto <[email protected]>
  348. * XmlConvertTests.cs : tests for ToUInt16/32/64() and VerifyTOKEN().
  349. 2005-11-09 Atsushi Enomoto <[email protected]>
  350. * XmlConvertTests.cs : some tests for ToInt64(), ToSByte(),
  351. 2005-11-09 Atsushi Enomoto <[email protected]>
  352. * XmlConvertTests.cs : some tests for ToInt16(), ToInt32(),
  353. VerifyName() and VerifyNCName().
  354. 2005-11-07 Atsushi Enomoto <[email protected]>
  355. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags is updated.
  356. 2005-10-23 Atsushi Enomoto <[email protected]>
  357. * XmlNamespaceManagerTests.cs :
  358. well, hence GetNamespacesInScope() is NotDotNet.
  359. 2005-10-23 Atsushi Enomoto <[email protected]>
  360. * XmlNamespaceManagerTests.cs : GetNamespacesInScope() - Added test
  361. labels. Fixed counts; they count default namespaces. MS seems to
  362. have a bug on declaration removal (xmlns='') on .Local.
  363. * XmlNodeReaderTests.cs : in .NET 2.0 undeclared entity are not
  364. allowed at all, so disabled tests that depends on such references.
  365. 2005-10-23 Atsushi Enomoto <[email protected]>
  366. * XmlTextWriterTests.cs : split some tests that try to write nodes
  367. at error state (.NET 2.0 correctly rejects them).
  368. 2005-10-23 Atsushi Enomoto <[email protected]>
  369. * XmlTextReaderTests.cs, XmlValidatingReaderTests.cs,
  370. XmlReaderCommonTests.cs : added and fixed tests to make sure that
  371. LookupNamespace("") returns null for default namespace, and checks
  372. that empty namespace URI is not allowed for non-empty prefix.
  373. 2005-10-04 Atsushi Enomoto <[email protected]>
  374. * XmlConvertTests.cs : added test for bug #76328.
  375. 2005-10-01 Atsushi Enomoto <[email protected]>
  376. * XmlWriterSettingsTests.cs : test for NormalizeNewLines.
  377. 2005-10-01 Atsushi Enomoto <[email protected]>
  378. * XmlAttributeTests.cs : test for bug #76311.
  379. 2005-10-01 Atsushi Enomoto <[email protected]>
  380. * XmlReaderCommonTests.cs : added simple Create() test.
  381. 2005-09-28 Atsushi Enomoto <[email protected]>
  382. * XmlNodeReaderTests.cs : added test for bug #76260.
  383. 2005-09-27 Atsushi Enomoto <[email protected]>
  384. * XmlTextReaderTests.cs : added test for bug #76247.
  385. 2005-09-26 Atsushi Enomoto <[email protected]>
  386. * XmlValidatingReaderTests.cs : added test for bug #76234.
  387. 2005-09-25 Atsushi Enomoto <[email protected]>
  388. * XmlReaderSettingsTests.cs : XmlSchemaValidationFlags NET_2_0 update.
  389. 2005-09-21 Atsushi Enomoto <[email protected]>
  390. * XmlWriterSettingsTests.cs : removed NormalizeNewLines.
  391. 2005-09-21 Atsushi Enomoto <[email protected]>
  392. * XmlReaderSettingsTests.cs : updated NET_2_0 related tests.
  393. * NameTableTests.cs : numbered testcases. fixed argument order.
  394. 2005-09-14 Atsushi Enomoto <[email protected]>
  395. * XmlTextReaderTests.cs : added #76102 testcase.
  396. 2005-09-14 Atsushi Enomoto <[email protected]>
  397. * XmlTextWriterTests.cs : added #76095 testcase.
  398. 2005-08-31 Sebastien Pouliot <[email protected]>
  399. * XmlSecureResolverTests.cs: Added more test cases for CreateEvidence.
  400. * XmlSecureResolverCas.cs: New. CAS unit tests for XmlSecureResolver.
  401. * XmlExceptionCas.cs: New. CAS unit tests for exception serialization.
  402. 2005-08-04 Atsushi Enomoto <[email protected]>
  403. * XmlAttributeTests.cs : Test if set_Value() works in such cases that
  404. there was only one child in attribute and it was an entity reference.
  405. 2005-07-28 Atsushi Enomoto <[email protected]>
  406. * XsdValidatingReaderTests.cs : added test case for duplicating
  407. assignment of both Schemas.Add() and xsi:schemaLocation where
  408. schemaLocation could not be resolved.
  409. 2005-07-14 Atsushi Enomoto <[email protected]>
  410. * XmlTextWriterTests.cs : added bug #75546 testcase.
  411. 2005-06-29 Atsushi Enomoto <[email protected]>
  412. * XmlConvertTests.cs : added timespan milliseconds testcase.
  413. 2005-06-27 Atsushi Enomoto <[email protected]>
  414. * XmlTextReaderTests.cs : added a testcase for not-wf entity
  415. declaration which is actually not used in the instance.
  416. 2005-06-23 Atsushi Enomoto <[email protected]>
  417. * XsdParticleValidationTests.cs : XmlSchemaException ->
  418. XmlSchemaValidationException under 2.0 profile.
  419. 2005-06-17 Atsushi Enomoto <[email protected]>
  420. * XmlValidatingReaderTests.cs : added attribute namespace check in
  421. DefaultXmlnsAttributeLookup() as well.
  422. 2005-06-17 Atsushi Enomoto <[email protected]>
  423. * XmlValidatingReaderTests.cs : added DefaultXmlnsAttributeLookup().
  424. 2005-05-31 Atsushi Enomoto <[email protected]>
  425. * XmlValidatingReaderTests.cs : let's test external DTD as well.
  426. 2005-05-31 Atsushi Enomoto <[email protected]>
  427. * XmlValidatingReaderTests.cs : added ResolveEntityAndBaseURI() which
  428. is imported from sys.security.
  429. 2005-05-25 Andrew Skiba <[email protected]>
  430. * W3C : directory added
  431. 2005-05-10 Atsushi Enomoto <[email protected]>
  432. * XmlValidatingReaderTests.cs : fixed TestPreserveEntityNotOnDotNet()
  433. which was regarded as a bug while it was by design.
  434. 2005-05-05 Atsushi Enomoto <[email protected]>
  435. * XmlNamespaceManagerTests.cs : removed more atomizedName tests.
  436. 2005-05-05 Atsushi Enomoto <[email protected]>
  437. * XmlNamespaceManagerTests.cs : removed atomizedName related tests.
  438. 2005-03-25 Atsushi Enomoto <[email protected]>
  439. * XmlTextWriterTests.cs : added more test case for xml:space.
  440. 2005-03-24 Atsushi Enomoto <[email protected]>
  441. * XmlTextWriterTests.cs : added more tests on WriteQualifiedName().
  442. 2005-03-15 Atsushi Enomoto <[email protected]>
  443. * XmlValidatingReaderTests.cs : Added test for sequential text nodes
  444. which affects on ExpandEntities.
  445. 2005-03-09 Atsushi Enomoto <[email protected]>
  446. * XmlTextReaderTests.cs : added SurrogatePair() based on bug #73513.
  447. 2005-03-07 Atsushi Enomoto <[email protected]>
  448. * XmlDocumentTests.cs : Added ReadNodeEntityReferenceFillsChildren.
  449. Test case by Konstantin Triger.
  450. 2005-03-07 Atsushi Enomoto <[email protected]>
  451. * XmlValidatingReaderTests.cs : added ResolveEntityReadAttributeValue()
  452. 2005-03-03 Atsushi Enomoto <[email protected]>
  453. * XmlTextWriterTests.cs : added testcase for duplicating namespace
  454. mapping processing (should create another prefix, not exception).
  455. 2005-03-02 Atsushi Enomoto <[email protected]>
  456. * XmlTextWriterTests.cs : Added test for LookupPrefix() for
  457. overriden prefix.
  458. 2005-02-25 Atsushi Enomoto <[email protected]>
  459. * XmlNodeTests.cs : added Clone() of readonly node returns a node
  460. that is not readonly.
  461. 2005-02-25 Atsushi Enomoto <[email protected]>
  462. * XmlAttributeTests.cs : added nonNCName Prefix case.
  463. 2005-02-24 Atsushi Enomoto <[email protected]>
  464. * XmlTextWriterTests.cs : Test for call to WriteRaw() -> WriteString()
  465. 2005-02-16 Atsushi Enomoto <[email protected]>
  466. * XmlConvertTests.cs : added some null/empty string cases for
  467. EncodeName()/EncodeLocalName()/EncodeNmToken().
  468. 2005-02-15 Atsushi Enomoto <[email protected]>
  469. * XmlElementTests.cs : assertion numbering on
  470. RemoveDoesNotRemoveDefaultAttributes().
  471. 2005-01-26 Nick Drochak <[email protected]>
  472. * XmlValidatingReaderTests.cs: Move MS.NET bug-exposing test to a new
  473. test method and ignore it on .NET.
  474. 2005-01-17 Atsushi Enomoto <[email protected]>
  475. * XmlReaderSettingsTests.cs : added some .ctor() tests.
  476. 2005-01-13 Atsushi Enomoto <[email protected]>
  477. * XmlReaderCommonTests.cs : added labels for tests.
  478. Marked MoveToXmlDeclAttributes() as [Ignore] again because there is
  479. no consistent reference implementation to follow.
  480. 2005-01-13 Atsushi Enomoto <[email protected]>
  481. * XmlValidatingReaderTests.cs,
  482. XmlReaderCommonTests.cs,
  483. XmlTextWriterTests.cs,
  484. XmlUrlResolverTests.cs :
  485. Marked as NotDotNet for those tests that fails under MS.NET.
  486. Commented out some XmlTextWriter implementation-dependent assertions.
  487. Fixed ResolveUriWithNullArgs () expected return type.
  488. 2005-01-11 Atsushi Enomoto <[email protected]>
  489. * XmlTextWriterTests.cs : added Indent2() to test WriteComment EOL.
  490. 2004-01-11 Atsushi Enomoto <[email protected]>
  491. * XmlReaderCommonTests.cs :
  492. Oops, ReadAttributeValue() was not reverted. Now marked as NotDotNet.
  493. 2004-01-11 Atsushi Enomoto <[email protected]>
  494. * XmlReaderCommonTests.cs : reverted r38601. It is MS XmlTextReader
  495. that is buggy on attribute value's Prefix and NamespaceURI.
  496. 2005-01-10 Nick Drochak <[email protected]>
  497. * XmlWriterTests.cs: Fix build warnings.
  498. * XmlReaderCommonTests.cs: Make tests pass on Fx1.1. XmlNodeReader
  499. has different default attributes it seems.
  500. 2004-12-15 Raja R Harinath <[email protected]>
  501. * XmlReaderSettingsTests.cs (DefaultValue): Update DtdValidate and
  502. XsdValidate references to use ValidationType.
  503. 2004-12-08 Atsushi Enomoto <[email protected]>
  504. * XmlReaderSettingsTests.cs : updated some boolean flags to
  505. XmlSchemaValidationFlags.
  506. 2004-11-22 Atsushi Enomoto <[email protected]>
  507. * XmlTextReaderTests.cs : added AttributeNormalizationWrapped().
  508. 2004-11-14 Atsushi Enomoto <[email protected]>
  509. * XmlWriterTests.cs : Added test for WriteAttributes().
  510. 2004-11-08 Atsushi Enomoto <[email protected]>
  511. * XmlNodeReaderTests.cs : numbered some of asserts.
  512. 2004-11-08 Atsushi Enomoto <[email protected]>
  513. * XmlTextReaderTests.cs : added tests for 2.0 entity handling.
  514. * XmlValidatingReaderTests.cs : modified tests for entity handling
  515. that are changed in 2.0.
  516. 2004-10-29 Atsushi Enomoto <[email protected]>
  517. * XmlReaderCommonTests.cs : ReadAsObject() is removed.
  518. * XmlTextWriterTests.cs : added CloseTwice().
  519. * XmlNodeTests.cs : added labels.
  520. 2004-09-08 Atsushi Enomoto <[email protected]>
  521. * XmlWriterSettingsTests.cs : added.
  522. 2004-09-07 Atsushi Enomoto <[email protected]>
  523. * XmlReaderCommonTests.cs : Added tests for ReadAsObject().
  524. 2004-09-07 Atsushi Enomoto <[email protected]>
  525. * XmlNamespaceManagerTests.cs : Added test for duplicate addition,
  526. atomization, complex RemoveNamespace() and GetNamespacesInScope().
  527. 2004-09-07 Atsushi Enomoto <[email protected]>
  528. * XmlReaderSettingsTests.cs : added, including XmlReader.Create() tests
  529. * XmlTextReaderTests.cs : added normalization and Setting sests.
  530. 2004-09-06 Atsushi Enomoto <[email protected]>
  531. * XmlElementTests.cs : added another set_InnerXml test.
  532. * XmlNodeTests.cs : added BaseURI test.
  533. * XmlTextReaderTests.cs : added tests for Normalization, EOF,
  534. LineNumber, LinePosition (all reported ones).
  535. * XsdValidatingReaderTests.cs : more descriptions.
  536. 2004-09-06 Atsushi Enomoto <[email protected]>
  537. * XmlTextReaderTests.cs : added ProhibitDtd().
  538. * XmlWriterTests.cs : added WriteNodeError().
  539. 2004-06-21 Atsushi Enomoto <[email protected]>
  540. * XmlSecureResolverTests.cs : Just [Ignore] EmptyEvidenceDeniedAccess.
  541. It requires CAS.
  542. 2004-06-18 Atsushi Enomoto <[email protected]>
  543. * XmlSecureResolverTests.cs : [TestFixture] was missing.
  544. 2004-06-14 Atsushi Enomoto <[email protected]>
  545. * XmlTextWriterTests.cs : Avoid CR/CRLF testing complexity.
  546. 2004-06-14 Atsushi Enomoto <[email protected]>
  547. * XmlUrlResolverTests.cs : Unlike MS.NET, we treats Unix absolute file
  548. URI file:///usr/local/src as correct file path. MS.NET is not aware
  549. of such format and parses as "host = usr, path = /local/src".
  550. 2004-06-06 Atsushi Enomoto <[email protected]>
  551. * XmlTextWriterTests.cs : Added indentation testcase (it might now
  552. work due to CompareInfo.IndexOf() bug).
  553. 2004-06-06 Atsushi Enomoto <[email protected]>
  554. * XmlTextReaderTests.cs : added some namespace check tests.
  555. 2004-05-27 Atsushi Enomoto <[email protected]>
  556. * XmlTextReaderTests.cs : added test for bug #59142.
  557. * XmlTextWriterTests.cs : added test for bug #59154.
  558. * XmlDocumentTests.cs : added test for bug #59155.
  559. 2004-05-24 Atsushi Enomoto <[email protected]>
  560. * XmlNodeTests.cs : added Normalize2().
  561. 2004-05-13 Atsushi Enomoto <[email protected]>
  562. * XsdValidatingReaderTests.cs : Ignore TestNamespaceFalse(). It is not
  563. kind of thing that should be supported.
  564. * XmlValidatingReaderTests.cs : commented a bit.
  565. 2004-04-24 Atsushi Enomoto <[email protected]>
  566. * XmlConvertTests.cs : Commented out locale-dependent tests.
  567. * XmlDocumentTests.cs : Uncommented now-testable lines.
  568. Commented out that should not be allowed, such as non-XML-name node.
  569. 2004-04-24 Atsushi Enomoto <[email protected]>
  570. * XmlDeclarationTests.cs : More InnerText tests.
  571. 2004-04-20 Atsushi Enomoto <[email protected]>
  572. * XmlCharacterDataTests.cs : Added more tests for Substring().
  573. * XmlConvertTests.cs : Commented out locale-dependent tests.
  574. * XmlDocumentTests.cs : Added LoadEntityReference().
  575. 2004-03-31 Atsushi Enomoto <[email protected]>
  576. * Added nist_dom tests from Mainsoft hackers.
  577. * Added XmlSecureResolverTests.cs.
  578. 2004-03-16 Atsushi Enomoto <[email protected]>
  579. * XmlDocumentTests.cs : Added PreserveWhitespace2() (whitespace nodes
  580. should be written regardless of document.PreserveWhitespace.)
  581. 2004-03-15 Atsushi Enomoto <[email protected]>
  582. * XmlReaderCommonTests.cs : Added tests for ReadInner/OuterXml() on
  583. EndElement.
  584. 2004-03-14 Atsushi Enomoto <[email protected]>
  585. * XmlAttributeCollectionTests.cs : Added InsertAfterError().
  586. * XmlNodeTests.cs : Added SelectNodes(), SelectNodes2() [commented].
  587. 2004-03-04 Atsushi Enomoto <[email protected]>
  588. * XmlDocumentTests.cs : added Implementation().
  589. 2004-02-17 Atsushi Enomoto <[email protected]>
  590. * XmlEntityTests.cs, XmlDocumentEventTests.cs : added.
  591. 2004-02-05 Atsushi Enomoto <[email protected]>
  592. * XmlDocumentTests.cs : Added ReadNodeEmptyContent() and
  593. ReadNodeWhitespace().
  594. * XmlElementTests.cs : Added SetAttributeNodeError().
  595. 2004-02-04 Atsushi Enomoto <[email protected]>
  596. * XmlEntityReferenceTests.cs : renamed TestDescendantsRecursively to
  597. DescendantsRecursively and added more test lines.
  598. Added ChildNodes().
  599. * XmlReaderCommonTests.cs : Added MoveToXmlDeclAttribute(). However
  600. it is ignored (since XmlNodeReader behaves differently, maybe bug).
  601. 2004-02-03 Atsushi Enomoto <[email protected]>
  602. * XmlReaderCommonTests.cs : Added SurrogatePairContent().
  603. * XmlDocumentTests.cs : Added LoadXmlReaderNamespacesFalse().
  604. * XmlEntityReferenceTests.cs : Added TestsDescendantsRecursively().
  605. 2004-01-28 Atsushi Enomoto <[email protected]>
  606. * XmlDocumentTypeTests.cs : Added IncorrectInternalSubset().
  607. * XmlNodeTests.cs : Since .NET 1.1 also prohibits multiple document
  608. element, removed extraneous test switch for InsertBefore().
  609. * XsdParticleValidationTests.cs,
  610. XsdValidatingReaderTests.cs : These test class names are too
  611. ambiguous so just renamed them. (No bug reports are found on them,
  612. but should be warned in the meantime.)
  613. 2004-01-23 Atsushi Enomoto <[email protected]>
  614. * XmlElementTests.cs : Added SetAttributeXmlns.
  615. * XmlTextWriterTests.cs : Added several xmlns-related tests.
  616. 2004-01-22 Atsushi Enomoto <[email protected]>
  617. * XmlTextWriterTests.cs : Added *Do*OutputRemovalDefaultNSDeclaration.
  618. 2004-01-20 Atsushi Enomoto <[email protected]>
  619. * XmlElementTests.cs : Added WriteToMakesNonsenseForDefaultNSChildren.
  620. * XmlTextWriterTests.cs : Added DontOutputRemovalDefaultNSDeclaration.
  621. 2004-01-14 Atsushi Enomoto <[email protected]>
  622. * XmlAttributeCollectionTests.cs : Added RemoveDefaultAttribute().
  623. * XmlDocumentTests.cs, XmlElementTests.cs, XmlNodeReaderTests.cs,
  624. XmlTextReaderTests.cs, XmlTextWriter.cs, XmlWriterTests.cs :
  625. Close or avoid XmlTextReader.
  626. 2004-01-03 Atsushi Enomoto <[email protected]>
  627. * XmlAttributeCollectionTests.cs :
  628. added InsertAfterReplacesInCorrectOrder().
  629. * XmlUrlResolverTests.cs : fixed file path.
  630. * XmlTextReaderTests.cs : fixed file path.
  631. * XmlTextWriterTests.cs : added ElementXmlnsNeedEscape().
  632. 2003-12-21 Atsushi Enomoto <[email protected]>
  633. * XmlDocumentTests.cs, XmlElementTests.cs :
  634. Added GetElementsByTagNameNs2().
  635. 2003-12-16 Atsushi Enomoto <[email protected]>
  636. * XmlDeclarationTests.cs : Added InvalidInnerText().
  637. * XmlDocumentTests.cs : CRLF fix (to LF)
  638. * XmlWriterTests.cs : tiny fix on WriteNodeFullDocument().
  639. * XmlValidatingReaderTests.cs : Fixed entity handling check tests.
  640. 2003-11-28 Atsushi Enomoto <[email protected]>
  641. * XmlWriterTests.cs : Added WriteNodeFullDocument() with
  642. encoding specification. Added WriteNodeNonEmptyElement().
  643. * XmlUrlResolverTests.cs : Added GetEntityWithNonStreamReturnType()
  644. and GetEntityWithRelativeFileUri().
  645. * XmlTextWriterTests.cs : Added some namespace related tests.
  646. * XmlTextReaderTests.cs : Added char-entity and ReadBase64() tests.
  647. * XmlNodeTests.cs : GetPrefixOfNamespace() test also for disconnected
  648. nodes.
  649. * XmlElementTests.cs : Added ConstructionAndDefaultAttributes().
  650. * XmlDeclarationTests.cs : Added InvalidInnerText().
  651. * XmlAttributeTests.cs : Added CheckPrefixWithNamespace().
  652. 2003-10-13 Atsushi Enomoto <[email protected]>
  653. * XmlWriterTests.cs : Added WriteSurrogateCharEntity().
  654. 2003-10-13 Atsushi Enomoto <[email protected]>
  655. * XmlElementTests.cs : Added more tests on
  656. RemoveDoesNotRemoveDefaultAttributes().
  657. * XmlNodeTests.cs : Added Normalize(), GetNamespaceOfPrefix() and
  658. GetNamespaceOfPrefixNullArg().
  659. * XmlWriterTests.cs : Added WriteNodeNone().
  660. 2003-10-05 Atsushi Enomoto <[email protected]>
  661. * XmlConvertTests.cs : patch by Jonathan Kessler. Added more test
  662. methods.
  663. * XmlUrlResolverTests.cs : Renamed NullArgs to ResolveUriWithNullArgs,
  664. and added GetEntityWithNullArgs() (though it is uncommented).
  665. * XmlReaderCommonTests.cs : Added XML Schema-mode XmlValidatingReader
  666. testing phase.
  667. 2003-09-21 Atsushi Enomoto <[email protected]>
  668. * XmlTextReaderTests.cs : Oops, it was CRLF injected ;-)
  669. 2003-09-21 Atsushi Enomoto <[email protected]>
  670. * XmlReaderCommonTests.cs : Added ProhibitedMultipleAttributes().
  671. Fixed ReadAttributeValue(). Now I think it is MS.NET XmlTextReader
  672. which is rather buggy than their XmlNodeReader.
  673. * XmlTextReaderTests.cs : Added IfNamespacesThenProhibitedAttributes()
  674. and trivial messagefix.
  675. 2003-09-21 Atsushi Enomoto <[email protected]>
  676. * XmlNamespaceManagerTests.cs : Added PopScopeMustKeepAddedInScope().
  677. 2003-08-24 Atsushi Enomoto <[email protected]>
  678. * XmlAttributeTests.cs : Added DefaultAttributeRemoval() and
  679. EmptyStringHasTextNode().
  680. * XmlElementTests.cs : Added RemoveDoesNotRemoveDefaultAttributes().
  681. * XmlReaderCommonTests.cs : Added overroaded AssertNodeValues() and
  682. ReadAttributeValue().
  683. * XmlTextReaderTests.cs :
  684. Added NotAllowedCharRef() and ExpandParameterEntity().
  685. Also added but ignored tests: UndeclaredEntityInIntSubsetOnlyXml()
  686. and UndeclaredEntityInStandaloneXml().
  687. * XmlValidatingReaderTests.cs : TestAttributeDefaultContribution()
  688. refactory.
  689. * Added XsdParticleValidationTests.cs and XsdValidatingReaderTests.cs.
  690. 2003-08-05 Atsushi Enomoto <[email protected]>
  691. * XmlReaderCommonTests.cs : Its XmlValidatingReader.EntityHandling
  692. should be ExpandCharEntities.
  693. * XmlValidatingReaderTests.cs : added ResolveEntity(),
  694. ResolveEntity2() and ResolveEntityWithoutDTD().
  695. 2003-07-31 Atsushi Enomoto <[email protected]>
  696. * XmlDocumentTests.cs : added LoadThrowsUndeclaredEntity() and
  697. CreateEntityReferencesWithoutDTD().
  698. * XmlNodeReaderTests.cs : added ResolveEntity(), ResolveEntity2() and
  699. ResolveEntityWithoutDTD().
  700. 2003-07-29 Atsushi Enomoto <[email protected]>
  701. * XmlDocumentTests.cs : added DTDEntityAttributeHandling() test.
  702. * XmlElementTests.cs : added WriteToDefaultAttribute() test.
  703. * XmlNodeTests.cs : added InnerXmlWithXmlns () test.
  704. * XmlTextWriterTests.cs : added DontOutputNonDeclaredXmlns () test.
  705. * XmlValidatingReaderTests.cs : modified TestResolveEntity() to have
  706. entity reference inside text content (and it now fails).
  707. 2003-07-26 Atsushi Enomoto <[email protected]>
  708. * XmlAttributeTests.cs : added IdentityConstraints().
  709. * XmlDocumentTests.cs : added DocumentTypeNodes().
  710. * XmlNodeTests.cs : added InnerText().
  711. * XmlReaderCommonTests.cs : added XmlValidatingReader as one of the
  712. testing reader. Added IndexerAndAttributes().
  713. * XmlValidatingReader.cs : modified TestAttributes() to have
  714. ReadAttributeValue() tests. Added TestIdentityConstraints()
  715. 2003-07-24 Atsushi Enomoto <[email protected]>
  716. * XmlConvertTests.cs,
  717. XmlNodeTests.cs,
  718. XmlTextWriterTests.cs : removed some compilation warning.
  719. * XmlNodeReaderTests.cs : reverted Jul. 12th. ReadInnerXmlWrongInit()
  720. incorrect commit.
  721. * XmlValidatingReaderTests.cs : Code refactory (removed xml1, xml2...
  722. and changed PrepareXmlReader() as returning validating reader.
  723. Added indexer (this[]) property check and ValidationType.None check
  724. to TestAttributeDefaultContribution().
  725. Added TestExpandEntity(), TestPreserveEntity() and TestNormalization().
  726. 2003-07-19 Atsushi Enomoto <[email protected]>
  727. * XmlValidatingReaderTests.cs : added TestValidationEvent() and
  728. some code refactory.
  729. 2003-07-12 Atsushi Enomoto <[email protected]>
  730. * XmlValidatingReaderTests.cs : added TestNonDeterministicContent() and
  731. TestAttributeDefaultContribution().
  732. 2003-07-12 Atsushi Enomoto <[email protected]>
  733. * XmlNodeReaderTests.cs : Fixed ReadInnerXmlWrongInit() for correct
  734. ReadState check.
  735. * ChangeLog was incorrectly added about above stuff.
  736. * XmlTextReaderTests.cs : added some reader's state check tests and
  737. ReadAsElementContent and ReadAsAttributeContent.
  738. * XmlTextWriterTests.cs : added DontOutputMultipleXmlns().
  739. 2003-07-06 Atsushi Enomoto <[email protected]>
  740. * added XmlValidatingReaderTests.cs.
  741. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  742. * XmlTextWriterTests.cs: Made use of ExpectedException
  743. 2003-07-01 Martin Willemoes Hansen <[email protected]>
  744. * Made tests which expect an exception use the
  745. ExpectedException Attribute.
  746. 2003-06-20 Atsushi Enomoto <[email protected]>
  747. * added XmlUrlResolverTests.cs.
  748. 2003-06-16 Atsushi Enomoto <[email protected]>
  749. * added XmlCharTests.cs(separated XmlChar tests from XmlTextReaderTests)
  750. * XmlTextReaderTests.cs : added ExternalDocument() which will result
  751. in BaseURI test and DTD parameter entity test.
  752. 2003-06-16 Atsushi Enomoto <[email protected]>
  753. * XmlReaderCommonTests.cs : EmptyElementWithTwoAttributes() is now
  754. EmptyElementWithAttributes() and was added namespaced attribute tests.
  755. * XmlTextWriterTests.cs : added WriteWhitespace().
  756. 2003-06-10 Zoltan Varga <[email protected]>
  757. * XmlDocumentTests.cs: New test for null prefix and namespaceURI in
  758. CreateAttribute.
  759. 2003-06-01 Atsushi Enomoto <[email protected]>
  760. * XmlConvertTests.cs : added VerifyNCName().
  761. 2003-05-18 Atsushi Enomoto <[email protected]>
  762. * XmlTextWriterTests.cs : added FlushDoesnTCloseTag() and
  763. WriteWhitespaceCloseTag() (patch by Jonathan Hogg).
  764. added more tests to AttributeWriteAttributeString().
  765. * XmlAttributeTests.cs : SetInnerTextAndXml() rewrite.
  766. 2003-05-16 Atsushi Enomoto <[email protected]>
  767. * XmlAttributeTests.cs : added NamespaceAttributes() and WriteTo().
  768. * XmlDocumentTests.cs : fixed invalid xml of DocumentWithDoctypeDecl()
  769. and not well-formed xml of OuterXmlWithDefaultXmlns().
  770. * XmlElementTests.cs : added IsEmpty(). fixed not well-formed xml of
  771. WriteToWithDefaultNamespace().
  772. * XmlNodeReaderTests.cs : fixed incorrect result expectation of
  773. ReadInnerXmlWrongInit().
  774. * XmlNodeTets.cs : applied USE_VERSION_1_1 for InsertBefore()/-After().
  775. * XmlReaderCommonTests.cs,
  776. XmlTextReaderTests.cs : moved EntityReference() and EntityReference-
  777. InsideText() to XmlTextReaderTests.cs, since XmlNodeReader is expected
  778. to resolve these entity references.
  779. * XmlTextWriterTests.cs : removed English-dependent error message check.
  780. fixed incorrect state-check ignorant blocks of WriteAttributes ().
  781. * XmlWriterTests.cs : modified WriteNodeFullDocument() and WriteNode-
  782. XmlDecl() as MS.NET results in.
  783. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  784. * Tests inherits from Assertion and Assertion. prefixes removed
  785. 2003-05-05 Atsushi Enomoto <[email protected]>
  786. * added XmlConvertTests.cs.
  787. 2003-04-29 Atsushi Enomoto <[email protected]>
  788. * XmlAttributeTests.cs : added WriteTo.
  789. * XmlReaderCommonTests.cs,
  790. XmlTextReader.cs : fixed ReadInnerXml (check correct position.)
  791. Reverted EmptyElementWithStartAndEndTag, EmptyElementWithAttribute,
  792. and StartAndEndTagWithAttribute to XmlTextReaderTests.cs (because
  793. they requires IsEmptyElement = false, which is always true for
  794. XmlNodeReader).
  795. 2003-04-27 Atsushi Enomoto <[email protected]>
  796. * XmlReaderCommonTests.cs,
  797. XmlTextReaderTests.cs : Moved many tests to CommonTests.
  798. 2003-04-25 Atsushi Enomoto <[email protected]>
  799. * XmlWriterTests.cs : added some WriteNode() related testcases.
  800. 2003-04-13 Atsushi Enomoto <[email protected]>
  801. * XmlTextReaderTests.cs: quick fix to comment out TestExternalDocument.
  802. * XmlDocumentTests.cs : quick fix to comment out LoadExternalUri and
  803. LoadDocumentWithIgnoreSection.
  804. 2003-04-12 Atsushi Enomoto <[email protected]>
  805. * added this file as a new entry.
  806. See ../ChangeLog to find ChangeLog entries before than this day.