| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- 2005-08-25 Sebastien Pouliot <[email protected]>
- * TestUrlPropertyAttribute.cs: Fixed tests to match new beta2 API (and
- so it stops throwing MissingMethodException on MS runtime).
- 2005-08-22 Sebastien Pouliot <[email protected]>
- * PageTest.cs: Added test cases for using Request with an overrided
- Context property (as Page.Request should be the same as
- Page.Context.Request). Doesn't work as expected.
- 2005-08-20 Sebastien Pouliot <[email protected]>
- * PageTest.cs: Added a test for overriding Context. We're not playing
- fairly with virtual properties (and probably not just that one) as we
- use the private variable inside the class. This means that overriding
- the property without calling the base class doesn't work as expected.
- 2005-08-05 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: Option is rendered as a block.
- 2005-07-21 Peter Dennis Bartok <[email protected]>
- * PageTest.cs: Added new test file, added exception test for
- Request property
- 2005-07-18 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Added test file for Control class, initially
- contains only IDataBindingsAccessor test
- 2005-07-18 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: I fixed the nested indents
- 2005-07-18 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: Enable some indentation tests, others
- need to be disabled
- 2005-07-14 Duncan Mak <[email protected]>
- * DataBindingHandlerAttributeTest.cs (TestDefaultConstructor):
- This test should pass now.
- 2005-07-12 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: Enable some tests
- 2005-07-12 Sebastien Pouliot <[email protected]>
- * HtmlTextWriterTest.cs: Reactivated the AddStyleAttribute test case
- with the right value for 1.x (as current code doesn't match the
- expected results).
- 2005-07-11 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: The style attr thing below seems to be a
- 2.0 ism. Add tests for indentation.
- 2005-07-11 Sebastien Pouliot <[email protected]>
- * HtmlTextWriterTest.cs: Few more tests including a non working one
- for AddStyleAttribute.
- 2005-07-11 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: Add a test for popping end tags working
- correctly.
- * ToolboxDataAttributeTest.cs: Don't depend on the way that hash
- values are generated. Also, use built strings rather than stuff
- from ldstr to make the test a bit stronger.
- * PropertyConverterTest.cs: Make this pass on MSFT 1.1
- 2005-07-09 Sebastien Pouliot <[email protected]>
- * DataBindingHandlerAttributeTest.cs: Fix compilation error where
- System.Object is expected from MonoTests.System namespace. The test
- TestDefaultHandlerTypeName still throws a NullReferenceException.
- 2005-07-09 Duncan Mak <[email protected]>
- * DataBindingHandlerAttributeTest.cs: Aded new test. Used to find
- out how a typename is derived from a Type. (It uses
- AssemblyQualifiedName, and not FullName)
-
- 2005-07-08 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: Update notworking
- 2005-07-08 Jackson Harper <[email protected]>
- * ToolbarDataAttributeTest.cs: New test.
- 2005-07-07 Jackson Harper <[email protected]>
- * PropertyConverterTest.cs: New tests.
- 2005-07-07 Ben Maurer <[email protected]>
- * HtmlTextWriterTest.cs: More tests.
- 2005-07-07 Sebastien Pouliot <[email protected]>
- * HtmlTextWriterTest.cs: New. Unit tests for buglets found during
- implementations of HtmlControls.
- 2004-10-12 Sanjay Gupta <[email protected]>
- * TestUrlPropertyAttribute.cs: Added UrlPropertyAttribute test cases.
|