ChangeLog 40 KB

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