ChangeLog 44 KB

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