ChangeLog 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. 2007-01-05 Atsushi Enomoto <[email protected]>
  2. * XPathNavigatorCommonTests.cs : added test for incorrect namespace
  3. node links.
  4. 2007-01-05 Atsushi Enomoto <[email protected]>
  5. * XPathNavigatorTests.cs : added test for text() and whitespace/
  6. significantwhitespace node.
  7. 2006-12-05 Atsushi Enomoto <[email protected]>
  8. * XPathNavigatorReaderTests.cs : added test for MoveToAttribute(int).
  9. 2006-12-05 Atsushi Enomoto <[email protected]>
  10. * XPathNavigatorTests.cs : added test for XPath navigator editor's
  11. LookupPrefix().
  12. 2006-11-10 Atsushi Enomoto <[email protected]>
  13. * XPathNavigatorTests.cs : added test for bug #79875, and some
  14. "escaped" text tests for InnerXml.
  15. * XPathNavigatorReaderTests.cs : make sure that most of XPath nodes
  16. are rejected to read subtree.
  17. 2006-11-10 Atsushi Enomoto <[email protected]>
  18. * XPathNavigatorTests.cs : added test for bug #79874.
  19. 2006-10-27 Atsushi Enomoto <[email protected]>
  20. * XPathNavigatorTests.cs : added (kind of) test for bug #46751.
  21. 2006-10-11 Atsushi Enomoto <[email protected]>
  22. * XPathEditableNavigatorTests.cs : added test for CanEdit, based on
  23. the patch by Konstantin Triger.
  24. 2006-09-11 Atsushi Enomoto <[email protected]>
  25. * XPathEditableNavigatorTests.cs : added test fro AppendChild() from
  26. a document fragment.
  27. 2006-09-01 Atsushi Enomoto <[email protected]>
  28. * XPathNavigatorReaderTests.cs : added test for MoveToFirstAttribute()
  29. which is called from several current nodes.
  30. 2006-04-10 Atsushi Enomoto <[email protected]>
  31. * XPathNavigatorCommonTests.cs : there were some evil CRLF LF mix.
  32. 2006-04-10 Atsushi Enomoto <[email protected]>
  33. * XPathNavigatorCommonTests.cs : added test for bug #78067.
  34. * XPathNavigatorReaderTests.cs : ditto, for ReadSubtree() part.
  35. 2005-12-14 Atsushi Enomoto <[email protected]>
  36. * XPathNavigatorReaderTests.cs : Actually AttributesAndNamespaces()
  37. does not work under MS.NET.
  38. 2005-12-14 Atsushi Enomoto <[email protected]>
  39. * XPathNavigatorReaderTests.cs : new file for testing ReadSubtree()
  40. and all dependent members.
  41. 2005-12-13 Atsushi Enomoto <[email protected]>
  42. * XPathEditableNavigatorTests.cs : added tests for MoveToFollowing().
  43. 2005-12-13 Atsushi Enomoto <[email protected]>
  44. * XPathEditableNavigatorTests.cs : added tests that passes empty
  45. string to editor methods. Added tests for ReplaceSelf().
  46. 2005-12-13 Atsushi Enomoto <[email protected]>
  47. * XPathEditableNavigatorTests.cs : added tests for PrependChild().
  48. 2005-12-13 Atsushi Enomoto <[email protected]>
  49. * XPathEditableNavigatorTests.cs :
  50. Added more tests for InsertAfter() and InsertBefore().
  51. Added tests for DeleteRange() and ReplaceRange().
  52. 2005-12-13 Atsushi Enomoto <[email protected]>
  53. * XPathEditableNavigatorTests.cs : added tests for InsertAfter and
  54. InsertBefore.
  55. 2005-12-13 Atsushi Enomoto <[email protected]>
  56. * XPathEditableNavigatorTests.cs : new file for testing all editor
  57. functionality in XPathNavigator.
  58. 2005-12-12 Atsushi Enomoto <[email protected]>
  59. * XPathNavigatorTests.cs : added tests for ValueAsXxx properties.
  60. 2005-10-23 Atsushi Enomoto <[email protected]>
  61. * XPathNavigatorCommonTests.cs, XPathNavigatorTests.cs,
  62. XPathNavigatorEvaluateTests.cs :
  63. Added assertion labels. Marked some tests as NotDotNet under 2.0.
  64. 2005-08-31 Sebastien Pouliot <[email protected]>
  65. * XPathExceptionCas.cs: New. CAS unit tests for exception
  66. serialization.
  67. 2005-07-23 Atsushi Enomoto <[email protected]>
  68. * XPathNavigatorCommonTests.cs : added test for bug #75609
  69. 2005-02-14 Atsushi Enomoto <[email protected]>
  70. * XPathNavigatorTests.cs : new test code was broken.
  71. 2005-02-14 Atsushi Enomoto <[email protected]>
  72. * XPathNavigatorTests.cs : added SignificantWhitespaceConstruction().
  73. 2004-09-13 Atsushi Enomoto <[email protected]>
  74. * XPathAtomicValueTests.cs : added.
  75. 2004-03-31 Atsushi Enomoto <[email protected]>
  76. * XPathNavigatorTests.cs : Added PropertiesOnNamespace().
  77. 2004-03-24 Atsushi Enomoto <[email protected]>
  78. * SelectNodesTests.cs : Added test for 1) not selecting previously-
  79. selected prefixes, and that 2) default namespace erasure (i.e.
  80. xmlns="") should not be selected.
  81. 2004-03-16 Atsushi Enomoto <[email protected]>
  82. * XPathNavigatorCommonTests.cs : Added test for splitted text.
  83. 2004-02-17 Atsushi Enomoto <[email protected]>
  84. * XPathNavigatorMatchesTest.cs : commonified some code blocks.
  85. Added MatchesAncestorsButNotCurrent(), MatchesParentAxis() and
  86. MatchesPredicatedParentAxis().
  87. 2004-01-28 Atsushi Enomoto <[email protected]>
  88. * XPathNavigatorCommonTests.cs : Added MoveToNamespace and IsDescendant.
  89. * XPathNavigatorTests.cs : Close XmlTextReader.
  90. 2003-12-18 Atsushi Enomoto <[email protected]>
  91. * XPathNavigatorTests.cs : Added XPathDocumentMoveToId().
  92. 2003-09-26 Atsushi Enomoto <[email protected]>
  93. * XPathNavigatorTests.cs : added SelectFromOrphan().
  94. 2003-06-30 Atsushi Enomoto <[email protected]>
  95. * Added XPathNavigatorCommonTests.cs.
  96. 2003-06-01 Atsushi Enomoto <[email protected]>
  97. * XPathNavigatorTests.cs : added DocumentWithProcessingInstruction().
  98. 2003-05-16 Atsushi Enomoto <[email protected]>
  99. * XPathNavigatorTests.cs : fixed not well-formed xml of
  100. DocumentWithXmlDeclaration().
  101. 2003-05-13 Martin Willemoes Hansen <[email protected]>
  102. * Tests inherits from Assertion and Assertion. prefixes removed
  103. 2003-04-12 Atsushi Enomoto <[email protected]>
  104. * added this file as a new entry.
  105. See ../ChangeLog to find former ChangeLog entries.