1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
|
2010-04-07 Marek Habersack <mhabersack@novell.com>
* ControlTest.cs: added test for bug #594238
2009-12-18 Marek Habersack <mhabersack@novell.com>
* ObjectStateFormatterTest.cs: added.
2009-07-06 Raja R Harinath <harinath@hurrynot.org>
* PageParserTest.cs (MissingMasterFile): Don't use 'typeof' on a
System.Web internal exception type.
2009-04-24 Marek Habersack <mhabersack@novell.com>
* PageParserFilterTest.cs: added
2009-02-05 Marek Habersack <mhabersack@novell.com>
* ControlTest.cs: added test for bug #471305
2009-01-21 Marek Habersack <mhabersack@novell.com>
* XhtmlTextWriterTest.cs: temporarily disabled the
RemoveRecognizedAttribute test (Nunit 2.4 issue).
2008-12-10 Marek Habersack <mhabersack@novell.com>
* PageParserTest.cs: added
2008-12-03 Marek Habersack <mhabersack@novell.com>
* DataBinderTest.cs: added
2008-10-17 Marek Habersack <mhabersack@novell.com>
* PageTest.cs: use a custom version of HtmlInputHidden control to
work around the new event validation code which doesn't work in
this instance.
2008-07-22 Gert Driesen <drieseng@users.sourceforge.net>
* LosFormatterTest.cs: Added test for Deserialize using non-seekable
stream.
2008-06-14 Gert Driesen <drieseng@users.sourceforge.net>
* PageTest.cs: Fixed compile error on MS (as it does not list the
test assembly in InternalVisibleTo). Removed extra tabs, and changed
spaces to tabs.
2008-03-23 Dean Brettle <dean@brettle.com>
* PageTest.cs: added tests to ensure that using a
ControlAdapter that is not of the type corresponding to the
control doesn't cause a cast error.
2008-03-09 Dean Brettle <dean@brettle.com>
* PageTest.cs: add tests for using a PageAdapter.
* ControlTest.cs: moved commented out ResolveAdapter_1 test to
../System.Web/AppBrowsersTest.cs. Fixed typo in test name.
Added Customcontroladapter.Adapter property for use by AppBrowsersTest.
2007-12-31 Vladimir Krasnov <vladimirk@mainsoft.com>
* PageTest.cs: added tests for Response.End/Redirect
2007-08-28 Marek Habersack <mhabersack@novell.com>
* PageTest.cs: added tests for exceptions that should be thrown
when the following properties are accessed from a Page descendant
that overrides the Context property: Response, Cache, Session. The
Application property test was also added, to check if it is
properly set to null when no request has been served by the page.
2007-08-23 Gert Driesen <drieseng@users.sourceforge.net>
* ControlTest.cs: Added test for bug #82546. Spaces to tabs.
2007-08-06 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: Added new tests.
2007-06-15 Gert Driesen <drieseng@users.sourceforge.net>
* LosFormatterTest.cs: Added tests for LosFormatter.
2007-06-09 Marek Habersack <mhabersack@novell.com>
* ControlTest.cs: enabled two tests that hadn't been working
before.
2007-05-21 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: added new tests.
2007-05-02 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: added new test.
2007-01-23 Vladimir Krasnov <vladimirk@mainsoft.com>
* TemplateControlTest.cs: removed not working attributes, TARGET_JVM
for AppRelativeVirtualPath property tests
2006-01-15 Ilya Kharmatsky <ilya-at-decode-systems.com>
* ControlTest.cs: removed NotWorking attributes,
AppRelativeTemplateSourceDirectory - changed to be WebTest, since
it checks the web context depended feature.
2006-12-27 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: added test.
2006-12-11 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: added test.
2006-12-07 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: fixed NunitWeb tests.
2006-12-06 Yoni Klain <yonik@mainsoft.com>
* ClientScriptManagerTest.cs: Change Render () for 2.0 definition
2006-11-29 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: fixed NunitWeb tests.
2006-11-29 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: removed NotWorking attributes.
2006-11-29 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: removed NotWorking attributes.
2006-11-28 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: removed NotWorking attributes.
2006-11-27 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: removed NotWorking attributes.
2006-11-27 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: removed NotWorking attributes.
2006-11-27 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: removed NotWorking attributes.
2006-11-27 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: removed NotWorking attributes.
2006-11-26 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: removed NotWorking attributes, fixed tests.
2006-11-26 Igor Zelmanovich <igorz@mainsoft.com>
* ClientScriptManagerTest.cs: removed NotWorking attributes.
2006-11-22 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: removed NotWorking attributes.
2006-11-22 Yoni Klain <yonik@mainsoft.com>
* PageTest.cs: added new tests
2006-11-22 Yoni Klain <yonik@mainsoft.com>
* ControlTest.cs: add directive for 1.1
2006-11-21 Yoni Klain <yonik@mainsoft.com>
* ControlTest.cs: added test.
* New resource Theme2.skin
2006-11-21 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: added test.
2006-11-20 Igor Zelmanovich <igorz@mainsoft.com>
* ClientScriptManagerTest.cs: removed NotWorking attributes, fixed tests.
2006-11-12 Igor Zelmanovich <igorz@mainsoft.com>
* LiteralControlTest.cs: added test.
2006-11-09 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: added test.
2006-11-09 Igor Zelmanovich <igorz@mainsoft.com>
* ControlTest.cs: added test.
2006-11-02 Igor Zelmanovich <igorz@mainsoft.com>
* ClientScriptManagerTest.cs: removed NotWorking attributes, fixed tests.
2006-10-26 Yoni Klain <yonik@mainsoft.com>
* Changed tests for to be runned on run-tests-ondotnet,
and added categories for ondotnet, and notworking for
mono.
2006-10-23 Igor Zelmanovich <igorz@mainsoft.com>
* PostBackOptionsTest.cs: new Test.
2006-10-22 Igor Zelmanovich <igorz@mainsoft.com>
* CssStyleCollectionTest.cs: new tests.
2006-10-19 Igor Zelmanovich <igorz@mainsoft.com>
* ClientScriptManagerTest.cs: removed NotWorking attribute.
2006-10-11 Igor Zelmanovich <igorz@mainsoft.com>
* DataSourceSelectArgumentsTest.cs: New tests.
2006-10-10 Igor Zelmanovich <igorz@mainsoft.com>
* DataSourceSelectArgumentsTest.cs: New test.
2006-10-09 Igor Zelmanovich <igorz@mainsoft.com>
* DataSourceSelectArgumentsTest.cs: New test.
2006-10-04 Klain Yoni <yonik@mainsoft.com>
* PageTest.cs: New test.
2006-09-18 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: removed NotWorking attributes.
2006-09-17 Klain Yoni <yonik@mainsoft.com>
* TemplateControlTest.cs: New test.
2006-09-14 Igor Zelmanovich <igorz@mainsoft.com>
* PageTest.cs: new test.
2006-09-14 Merav Sudri <meravs@mainsoft.com>
* PageTest.cs: Adding Page Header tests.
2006-09-13 Klain Yoni <yonik@mainsoft.com>
* ClientScriptManagerTest.cs: changes for not implemented stuff.
2006-09-04 Igor Zelmanovich <igorz@mainsoft.com>
* CssStyleCollectionTest.cs: new test.
2006-08-28 Klain Yoni <yonik@mainsoft.com>
* ClientScriptManagerTest.cs: new test.
2006-04-26 Atsushi Enomoto <atsushi@ximian.com>
* ControlTest.cs : fix r59834: both the build and the coding style.
2006-04-25 Konstantin Triger <kostat@mainsoft.com>
* ControlTest.cs: added test for IsViewStateEnabled.
2006-04-25 Andrew Skiba <andrews@mainsoft.com>
* ControlTest.cs: added test for ApplyStyleSheetSkin
2006-02-12 Cesar Lopez Nataren <cnataren@novell.com>
* HtmlTextWriterTest.cs: Added test for WriteBreak.
2006-01-18 Konstantin Triger <kostat@mainsoft.com>
* HtmlTextWriterTest.cs: Added tests enduring case insensitivity of
attributes and correctness of HtmlTextWriterAttribute
2005-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ControlTest.cs: new tests to prove that Control uses its own
ControlCollection field instead of the Controls property when rendering.
2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ControlCollectionTest.cs: new tests.
2005-09-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* ControlTest.cs: a few more tests for UniqueID, as the datagrid and
related tests showed a problem with this.
2005-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* AttributeCollectionTest.cs: some tests for this.
2005-09-23 Ben Maurer <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: Reenable some stuff
2005-09-21 Sebastien Pouliot <sebastien@ximian.com>
* DataBindingHandlerAttributeTest.cs: Fixed test results in 2.0 RC
(string interning rules differ in 2.0 so it's better to use Assert.
AreEquals than Assert.AreSame).
* PageTest.cs: Fixed test results in 2.0 RC (NRE in Page.User).
* TestUrlPropertyAttribute.cs: Fixed test results in 2.0 RC (removed
property changed results).
2005-09-20 Sebastien Pouliot <sebastien@ximian.com>
* TestUrlPropertyAttribute.cs: Remove references to UrlTypes (removed
in 2.0 RC). Fix compilation for tests under NET_2_0.
2005-09-19 Sebastien Pouliot <sebastien@ximian.com>
* TagPrefixAttributeCas.cs: New. CAS unit tests.
* TemplateBuilderCas.cs: New. CAS unit tests.
* TemplateContainerAttributeCas.cs: New. CAS unit tests.
* TemplateControlCas.cs: New. CAS unit tests.
* ToolboxDataAttributeCas.cs: New. CAS unit tests.
* TripletCas.cs: New. CAS unit tests.
* UserControlCas.cs: New. CAS unit tests.
* UserControlControlBuilderCas.cs: New. CAS unit tests.
* ValidationPropertyAttributeCas.cs: New. CAS unit tests.
* ValidatorCollectionCas.cs: New. CAS unit tests.
2005-09-15 Sebastien Pouliot <sebastien@ximian.com>
* ParseChildrenAttributeCas.cs: New. CAS unit tests.
* PartialCachingAttributeCas.cs: New. CAS unit tests.
* PersistChildrenAttributeCas.cs: New. CAS unit tests.
* PersistenceModeAttributeCas.cs: New. CAS unit tests.
* PropertyConverterCas.cs: New. CAS unit tests.
* RootBuilderCas.cs: New. CAS unit tests.
* StateBagCas.cs: New. CAS unit tests.
* StateItemCas.cs: New. CAS unit tests.
* StaticPartialCachingControlCas.cs: New. CAS unit tests.
2005-09-15 Sebastien Pouliot <sebastien@ximian.com>
* Html32TextWriterCas.cs: New. CAS unit tests.
* HtmlTextWriterCas.cs: New. CAS unit tests.
* ImageClickEventArgsCas.cs: New. CAS unit tests.
* LiteralControlCas.cs: New. CAS unit tests.
* LosFormatterCas.cs: New. CAS unit tests.
* ObjectConverterCas.cs: New. CAS unit tests.
* ObjectTagBuilderCas.cs: New. CAS unit tests.
* PageCas.cs: New. CAS unit tests.
* PairCas.cs: New. CAS unit tests.
2005-09-14 Sebastien Pouliot <sebastien@ximian.com>
* DataBinderCas.cs: New. CAS unit tests.
* DataBindingCas.cs: New. CAS unit tests.
* DataBindingCollectionCas.cs: New. CAS unit tests.
* DataBindingHandlerAttributeCas.cs: New. CAS unit tests.
* DataBoundLiteralControlCas.cs: New. CAS unit tests.
* DesignerDataBoundLiteralControlCas.cs: New. CAS unit tests.
* DesignTimeParseDataCas.cs: New. CAS unit tests.
* DesignTimeTemplateParserCas.cs: New. CAS unit tests.
* EmptyCollectionCas.cs: New. CAS unit tests.
2005-09-14 Sebastien Pouliot <sebastien@ximian.com>
* AttributeCollectionCas.cs: New. CAS unit tests.
* BaseParserCas.cs: New. CAS unit tests.
* CompiledTemplateBuilderCas.cs: New. CAS unit tests.
* ConstructorNeedsTagAttributeCas.cs: New. CAS unit tests.
* ControlBuilderAttributeCas.cs: New. CAS unit tests.
* ControlBuilderCas.cs: New. CAS unit tests.
* ControlCas.cs: New. CAS unit tests.
* ControlCollectionCas.cs: New. CAS unit tests.
* CssStyleCollectionCas.cs: New. CAS unit tests.
2005-09-07 Chris Toshok <toshok@ximian.com>
* MinimizableAttributeTypeConverterTest.cs: new test.
2005-08-25 Sebastien Pouliot <sebastien@ximian.com>
* TestUrlPropertyAttribute.cs: Fixed tests to match new beta2 API (and
so it stops throwing MissingMethodException on MS runtime).
2005-08-22 Sebastien Pouliot <sebastien@ximian.com>
* 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 <sebastien@ximian.com>
* 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 <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: Option is rendered as a block.
2005-07-21 Peter Dennis Bartok <pbartok@novell.com>
* PageTest.cs: Added new test file, added exception test for
Request property
2005-07-18 Peter Dennis Bartok <pbartok@novell.com>
* ControlTest.cs: Added test file for Control class, initially
contains only IDataBindingsAccessor test
2005-07-18 Ben Maurer <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: I fixed the nested indents
2005-07-18 Ben Maurer <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: Enable some indentation tests, others
need to be disabled
2005-07-14 Duncan Mak <duncan@novell.com>
* DataBindingHandlerAttributeTest.cs (TestDefaultConstructor):
This test should pass now.
2005-07-12 Ben Maurer <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: Enable some tests
2005-07-12 Sebastien Pouliot <sebastien@ximian.com>
* 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 <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: The style attr thing below seems to be a
2.0 ism. Add tests for indentation.
2005-07-11 Sebastien Pouliot <sebastien@ximian.com>
* HtmlTextWriterTest.cs: Few more tests including a non working one
for AddStyleAttribute.
2005-07-11 Ben Maurer <bmaurer@ximian.com>
* 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 <sebastien@ximian.com>
* 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 <duncan@novell.com>
* 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 <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: Update notworking
2005-07-08 Jackson Harper <jackson@ximian.com>
* ToolbarDataAttributeTest.cs: New test.
2005-07-07 Jackson Harper <jackson@ximian.com>
* PropertyConverterTest.cs: New tests.
2005-07-07 Ben Maurer <bmaurer@ximian.com>
* HtmlTextWriterTest.cs: More tests.
2005-07-07 Sebastien Pouliot <sebastien@ximian.com>
* HtmlTextWriterTest.cs: New. Unit tests for buglets found during
implementations of HtmlControls.
2004-10-12 Sanjay Gupta <gsanjay@novell.com>
* TestUrlPropertyAttribute.cs: Added UrlPropertyAttribute test cases.
|