ChangeLog 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. 2005-08-25 Sebastien Pouliot <[email protected]>
  2. * TestUrlPropertyAttribute.cs: Fixed tests to match new beta2 API (and
  3. so it stops throwing MissingMethodException on MS runtime).
  4. 2005-08-22 Sebastien Pouliot <[email protected]>
  5. * PageTest.cs: Added test cases for using Request with an overrided
  6. Context property (as Page.Request should be the same as
  7. Page.Context.Request). Doesn't work as expected.
  8. 2005-08-20 Sebastien Pouliot <[email protected]>
  9. * PageTest.cs: Added a test for overriding Context. We're not playing
  10. fairly with virtual properties (and probably not just that one) as we
  11. use the private variable inside the class. This means that overriding
  12. the property without calling the base class doesn't work as expected.
  13. 2005-08-05 Ben Maurer <[email protected]>
  14. * HtmlTextWriterTest.cs: Option is rendered as a block.
  15. 2005-07-21 Peter Dennis Bartok <[email protected]>
  16. * PageTest.cs: Added new test file, added exception test for
  17. Request property
  18. 2005-07-18 Peter Dennis Bartok <[email protected]>
  19. * ControlTest.cs: Added test file for Control class, initially
  20. contains only IDataBindingsAccessor test
  21. 2005-07-18 Ben Maurer <[email protected]>
  22. * HtmlTextWriterTest.cs: I fixed the nested indents
  23. 2005-07-18 Ben Maurer <[email protected]>
  24. * HtmlTextWriterTest.cs: Enable some indentation tests, others
  25. need to be disabled
  26. 2005-07-14 Duncan Mak <[email protected]>
  27. * DataBindingHandlerAttributeTest.cs (TestDefaultConstructor):
  28. This test should pass now.
  29. 2005-07-12 Ben Maurer <[email protected]>
  30. * HtmlTextWriterTest.cs: Enable some tests
  31. 2005-07-12 Sebastien Pouliot <[email protected]>
  32. * HtmlTextWriterTest.cs: Reactivated the AddStyleAttribute test case
  33. with the right value for 1.x (as current code doesn't match the
  34. expected results).
  35. 2005-07-11 Ben Maurer <[email protected]>
  36. * HtmlTextWriterTest.cs: The style attr thing below seems to be a
  37. 2.0 ism. Add tests for indentation.
  38. 2005-07-11 Sebastien Pouliot <[email protected]>
  39. * HtmlTextWriterTest.cs: Few more tests including a non working one
  40. for AddStyleAttribute.
  41. 2005-07-11 Ben Maurer <[email protected]>
  42. * HtmlTextWriterTest.cs: Add a test for popping end tags working
  43. correctly.
  44. * ToolboxDataAttributeTest.cs: Don't depend on the way that hash
  45. values are generated. Also, use built strings rather than stuff
  46. from ldstr to make the test a bit stronger.
  47. * PropertyConverterTest.cs: Make this pass on MSFT 1.1
  48. 2005-07-09 Sebastien Pouliot <[email protected]>
  49. * DataBindingHandlerAttributeTest.cs: Fix compilation error where
  50. System.Object is expected from MonoTests.System namespace. The test
  51. TestDefaultHandlerTypeName still throws a NullReferenceException.
  52. 2005-07-09 Duncan Mak <[email protected]>
  53. * DataBindingHandlerAttributeTest.cs: Aded new test. Used to find
  54. out how a typename is derived from a Type. (It uses
  55. AssemblyQualifiedName, and not FullName)
  56. 2005-07-08 Ben Maurer <[email protected]>
  57. * HtmlTextWriterTest.cs: Update notworking
  58. 2005-07-08 Jackson Harper <[email protected]>
  59. * ToolbarDataAttributeTest.cs: New test.
  60. 2005-07-07 Jackson Harper <[email protected]>
  61. * PropertyConverterTest.cs: New tests.
  62. 2005-07-07 Ben Maurer <[email protected]>
  63. * HtmlTextWriterTest.cs: More tests.
  64. 2005-07-07 Sebastien Pouliot <[email protected]>
  65. * HtmlTextWriterTest.cs: New. Unit tests for buglets found during
  66. implementations of HtmlControls.
  67. 2004-10-12 Sanjay Gupta <[email protected]>
  68. * TestUrlPropertyAttribute.cs: Added UrlPropertyAttribute test cases.