Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Web.UI.WebControls « Test « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c903579555285e83fddda4852a29d7b0d6534b53 (plain)
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
2005-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DropDownListTest.cs: test for html-encoding of the text.

2005-11-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* RadioButtonTest.cs: more tests for the 'name' attribute.

2005-10-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* LiteralTest.cs: Literal allows LiteralControl.

2005-10-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListBoxTest.cs: a few more tests for ListBox and selection.

2005-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControlTest.cs: 3 more tests for ListControl.

2005-10-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CustomValidatorTest.cs: an empty control name is valid.

2005-10-17  Sebastien Pouliot  <sebastien@ximian.com> 

	* RequiredFieldValidatorCas.cs: New. CAS unit for 
	RequiredFieldValidator.

2005-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataListTest.cs: added some style and IRepeatInfoUser tests.

2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListBoxTest.cs: the name is the UniqueID, not the ClientID.
	* WebControlTest.cs: Attributes statebag is case insensitive.

2005-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ImageButtonTest.cs: test that 'name' attribute is rendered.

2005-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs: Test for ButtonColumn with DataTextField.

2005-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs: new test for the style of the linkbutton in the
	headers when sorting is enabled. Also test that the Items property
	contains the DataGridItems.

2005-09-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TableCellTest.cs: the "Text" viewstate value does not control whether
	we render the children or not.

	* EditCommandColumnTest.cs: some tests do not pass on MS rutime for me,
	so I've made them NotDotNet and fixed all the problems. Also added tests
	to ensure that the TextBox's form the BoundColumns are present in the
	hierarchy, as before we did nothing there.
	
	* ButtonTest.cs: test to show that a Button's children are not rendered.

2005-09-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PagedDataSourceTest.cs: more tests.

2005-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PagedDataSourceTest.cs: more tests.

2005-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* CalendarTest.cs: added test to check for ID and base attributes being
	copied from the calendar into the table.

2005-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* PagedDataSourceTest.cs: nullref is throw on null DataSource.

2005-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs: fixed a test and added a commented out one that works
	fine in mono but throws nullref with MS.

2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs: more tests that add a TemplateColumn.

2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* EditCommandColumnTest.cs: added a test here for datagrid, as this was
	the file whose test failed because the id of the datagrid generated
	table.

2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* FontUnitCas.cs: method name change in FontUnitTest.
	* FontUnitTest.cs: splitted tests, enabled the "NotWorking" ones and
	added tests for FontSize names beginning with x and containing a dash.

2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListControlTest.cs: new tests for SelectedValue, SelectedIndex and
	DataBinding.

2005-09-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs:
	* DataListTest.cs: OnItemCommand is raised always in OnBubbleEvent.

2005-09-23  Sebastien Pouliot  <sebastien@ximian.com>

	* LoginTest.cs: Make OnBubbleEvent_Authenticated_OnAuthenticate test 
	case "work" on both MS and Mono.
	* UnitTest.cs: IncorrectConstructor9 was fixed (in 2.0 RC) to throw
	the FormatException (just like earlier fx did).

2005-09-23  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* LabelCas.cs, LinkButtonCas.cs, ListBoxCas.cs, ListControlCas.cs,
	ListItemCas.cs, ListItemCollectionCas.cs, LiteralCas.cs, LoginCas.cs,
	LoginNameCas.cs, LoginStatusCas.cs, MonthChangedEventArgsCas.cs,
	PagedDataSourceCas.cs, PanelCas.cs, RadioButtonCas.cs, 
	RadioButtonListCas.cs, RangeValidatorCas.cs, 
	RegularExpressionValidatorCas.cs, RepeaterCas.cs, RepeatInfoCas.cs,
	RoleGroupCas.cs, RoleGroupCollectionCas.cs, 
	SelectedDatesCollectionCas.cs, StyleCas.cs, TableCas.cs, 
	TableCellCas.cs, TableFooterRowCas.cs, TableHeaderCellCas.cs,
	TableHeaderRowCas.cs, TableItemStyleCas.cs, TableRowCas.cs,
	TableSectionStyleCas.cs, TableStyleCas.cs, TargetConverterCas.cs,
	TextBoxCas.cs, TreeViewCas.cs, UnitCas.cs, UnitConverterCas.cs,
	ValidatedControlConverterCas.cs, ValidationSummaryCas.cs, 
	WebColorConverterCas.cs, WebControlCas.cs, XmlCas.cs, 
	XmlDataSourceCas.cs: New CAS unit tests - checks for LinkDemands and 
	re-execute the "classic" unit tests under the most retricted security
	permissions possible.

2005-09-23  Sebastien Pouliot  <sebastien@ximian.com>

	* LinkButtonTest.cs: Fixed fixture name (Text -> Test).
	* ListItemTest.cs: Fixed header.
	* LoginTest.cs: Changed [Ignore] to [Category ("NotDotNet")] on 
	OnBubbleEvent_Authenticated_OnAuthenticate () test case.
	* PagedDataSourceTest.cs: Added missing [Test] to 
	TestEnumerators_NoPaging test case.
	* RadioButtonListTest.cs: Fixed header.
	* RepeatInfoTest.cs: Add missing [Test] on DefaultValues test case.
	* UnitConverterTest.cs: Fixed test cases (commited bu never executed)
	before including it in the suite.
	* ValidatorTest.cs: Fixed header.
	* WebColorConverterTest.cs: Fixed header.

2005-09-21  Sebastien Pouliot  <sebastien@ximian.com>

	* AdCreatedEventArgsCas.cs, BaseCompareValidatorCas.cs,
	BaseDataBoundControlCas.cs, BaseDataListCas.cs, BaseValidatorCas.cs,
	BoundColumnCas.cs, ButtonColumnCas.cs, CalandarCas.cs, 
	CalendarDayCas.cs, CheckBoxCas.cs, CheckBoxListCas.cs, 
	CompareValidatorCas.cs, CompositeControlCas.cs, CustomValidatorCas.cs,
	DataBoundControlCas.cs, DataGridCas.cs, DataGridColumnCas.cs,
	DataGridItemCas.cs, DataGridItemCollectionCas.cs, 
	DataGridPagerStyleCas.cs, DataKeyCollectionCas.cs, DataListItemCas.cs,
	DataListItemCollectionCas.cs, EditCommandColumnCas.cs, FontInfoCas.cs,
	FontNamesConverterCas.cs, FontUnitCas.cs, FormViewCas.cs, 
	HyperLinkCas.cs, HyperLinkColumnCas.cs, ImageButtonCas.cs, 
	ImageCas.cs: New CAS unit tests - checks for LinkDemands and 
	re-execute the "classic" unit tests under the most retricted security
	permissions possible.

2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs: added data binding tests.
	* BaseDataListTest.cs: it's DataKeys (arraylist) what gets to the
	viewstate, not the DataKeyCollection.

2005-09-20  Sebastien Pouliot  <sebastien@ximian.com>

	* AdCreatedEventArgsTest.cs, BaseCompareValidatorTest.cs, 
	CompositeControlTest.cs, DataListTest.cs, DropDownListTest.cs,
	EditCommandColumnTest.cs, FontNamesConverterTest.cs, FormViewTest.cs,
	ListControlTest.cs, MonthChangedEventArgsTest.cs, 
	RadioButtonListTest.cs, StyleTest.cs, TableCellTest.cs, 
	TextBoxTest.cs, TreeViewTest.cs, ValidatedControlConverterTest.cs:
	Fixed tests results under 2.0 Release Candidate (for NET_2_0).

2005-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* DataGridTest.cs: fix expected/actual order. Added test for HeaderText
	and empty ArrayList.

2005-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TableCellTest.cs: TableCell does not get an automatic ID.

2005-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TableStyleTest.cs: added test to check that GridLines is correctly
	restored in LoadViewState.

2005-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* TableCellTest.cs: added new test cases for bug #76078.

2005-09-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>

	* ListItemTest.cs: tests for ListItem.
	* RadioButtonListTest.cs: more test for load/raise.

2005-09-09  Chris Toshok  <toshok@ximian.com>

	* StyleTest.cs (FontInfo_Empty): test to see if changes to
	Style.Font cause changes in the style's empty status.

2005-09-07  Chris Toshok  <toshok@ximian.com>

	* CalendarTest.cs (TestSelectedColorDefault): we need to split up
	the color tests since they're rendered in different orders by
	ms/us.

2005-09-07  Chris Toshok  <toshok@ximian.com>

	* ListControlTest.cs: add tests for the ControlState.

2005-09-05  Chris Toshok  <toshok@ximian.com>

	* FormViewTest.cs: new tests.

2005-09-05  Chris Toshok  <toshok@ximian.com>

	* DataBoundControlTest.cs: new tests.

	* BaseDataBoundControlTest.cs: new tests.

2005-09-01  Chris Toshok  <toshok@ximian.com>

	* ListControlTest.cs (DefaultProperties): add tests for TagKey,
	Text, and AppendDataBoundItems.
	(ViewStateContents): add checks for Text and AppendDataBoundItems.

2005-09-01  Raja R Harinath  <rharinath@novell.com>

	* CalendarTest.cs: Remove duplicate using-declarations.
	* XmlDataSourceTest.cs: Protect with NET_2_0 guard.
	* RepeaterTest.cs (Poker.GetSelectArguments): Likewise.
	(Poker.DoCreateDataSourceSelectArguments): Likewise.
	(Repeater_DefaultsSelectArguments): Likewise.

2005-08-31  Chris Toshok  <toshok@ximian.com>

	* TreeViewTest.cs: beginnings of new tests.

	* RepeaterTest.cs: same.

	* XmlDataSourceTest.cs: same.

2005-08-27  Chris Toshok  <toshok@ximian.com>

	* TextBoxTest.cs: add 2.0 test to show that validation properties
	have no effect on downlevel rendering.

2005-08-26  Chris Toshok  <toshok@ximian.com>

	* TextBoxTest.cs: add tests for the 2.0 validation properties, and
	to make sure they're getting saved to the viewstate.

2005-08-26  Chris Toshok  <toshok@ximian.com>

	* FontUnitTest.cs: Add tests for the two 2.0 constructors, and the
	2.0 ToString(IFormatProvider) method.

	* UnitTest.cs: Add tests for the 2.0 ToString(IFormatProvider)
	method.

2005-08-26  Sebastien Pouliot  <sebastien@ximian.com> 

	* TableStyleTest.cs: New test cases for 2.0.

2005-08-25  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* CheckBoxListTest.cs: Use Ben's CleanHtmlTextWriter to compare 
	rendered output. Re-ordered the expected value to match. Rendering 
	tests now pass on Mono 1.x|2.0 profile and MS 1.x.
	* DropDownListTest.cs: (Properties) we have the same 2.0 failure on
	both Mono and MS runtime, maybe it's a feature ;-)

2005-08-25  Chris Toshok  <toshok@ximian.com>

	* CalendarTest.cs: add viewstate tests for Caption/CaptionAlign
	(2.0).

2005-08-25  Sebastien Pouliot  <sebastien@ximian.com>

	* HyperLinkTest.cs: Fixed the expected output rendering for 2.0.

2005-08-25  Peter Dennis Bartok  <pbartok@novell.com>

	* StyleTest.cs: Added tests for CssRegisteredStyle

2005-08-25  Sebastien Pouliot  <sebastien@ximian.com>

	* StyleTest.cs: Added test for IsStyleEmpty(null).

2005-08-24  Chris Toshok  <toshok@ximian.com>

	* ValidationSummaryTest.cs (ValidationSummary_ValidationGroup):
	add tests for ValidationGroup, making sure it's stored in the
	ViewState.

2005-08-24  Sebastien Pouliot  <sebastien@ximian.com>

	* RoleGroupTest.cs: New (2.0). Unit tests for RoleGroup.
	* RoleGroupCollectionTest.cs: New (2.0). Unit tests for 
	RoleGroupCollection.

2005-08-23  Chris Toshok  <toshok@ximian.com>

	* RepeatInfoTest.cs (RenderRepeater_BaseControl): the 2.0 ReatInfo
	class does things a little differently.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* ListControlTest.cs: #if NET_2_0 some of the asserts whose values
	are different in 2.0.

	* ValidationSummaryTest.cs: same.

	* XmlTest.cs: same.

	* ListBoxTest.cs: same.

	* CheckBoxTest.cs: same.

	* UnitTest.cs: same.

	* TextBoxTest.cs: same.

	* CustomValidatorTest.cs: same.

	* DataGridTest.cs: same.

	* BaseCompareValidatorTest.cs: remove ko-KR, since my laptop
	presently can't find it, and we already have another ymd date
	element order.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* RepeatInfoTest.auto.cs: regenerate.

	* RepeatInfoTest.auto.2.0.cs: generate using .Net 2.0.

	* RepeatInfoTest.gen.cs: add wrapper #ifdefs for the 1.x/2.0 cases
	- we need both.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* BaseCompareValidatorTest.cs: fix the tests that change behavior
	between 1.x and 2.0.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* LinkButtonTest.cs: add validation group tests.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* ImageButtonTest.cs: add NET_2_0 validation tests.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* CheckBoxTest.cs: add NET_2_0 validation tests.

2005-08-22  Chris Toshok  <toshok@ximian.com>

	* ButtonTest.cs (Button_DefaultValues): add NET_2_0 test for
	ValidationGroup.
	(Button_ViewState): same.

2005-08-22  Sebastien Pouliot  <sebastien@ximian.com>

	* LoginNameTest.cs: New. Unit tests for LoginName control (2.0).
	* LoginStatusTest.cs: New. Unit tests for LoginStatus control (2.0).

2005-08-19  Sebastien Pouliot  <sebastien@ximian.com>

	* TableCellTest.cs: Add test cases for AssociatedHeaderCellID (2.0).

2005-08-18  Sebastien Pouliot  <sebastien@ximian.com>

	* BaseDataListTest.cs: Added test cases for new properties, methods
	and events defined in 2.0.
	* LoginTest.cs: Added test cases for On* methods.

2005-08-17  Chris Toshok  <toshok@ximian.com>

	* CompositeControlTest.cs: put it in the MonoTests. namespace so
	it shows up in the right place in the nunit gui.
	
2005-08-16  Sebastien Pouliot  <sebastien@ximian.com> 

	* DataListTest.cs: Fixed ViewState test to work on both 1.x and 2.0.
	Added tests for Load|SaveControlState (2.0). Added basic tests for
	 SelectedValue property (2.0).
	* LoginTest.cs: Added test cases to check for null (removal) on all 
	string properties, added checks for all enums properties. Also added
	test case for SaveViewState.

2005-08-15  Sebastien Pouliot  <sebastien@ximian.com> 

	* TableHeaderRowTest.cs: New. Reuse TableRowTest test cases to test
	TableHeaderRow class (2.0).
	* TableFooterRowTest.cs: New. Reuse TableRowTest test cases to test
	TableFooterRow class (2.0).
	* TableRowTest.cs: Added test cases for new (2.0) TableSection 
	property. Reworked the tests to allow easier reuse of them by the
	TableHeaderRow and TableFooterRow classes.

2005-08-14  Sebastien Pouliot  <sebastien@ximian.com> 

	* LoginTest.cs: New. Unit tests to test default values for Login.
	* TableHeaderCellTest.cs: Add tests for CategoryText and Scope 
	properties (new in 2.0).
	* TableSectionStyleTest.cs: New. Unit tests for TableSectionStyle.
	Note that this new 2.0 class seems broken as it is not complete (MS).
	
2005-08-12  Chris Toshok  <toshok@ximian.com>

	* CompositeControlTest.cs: a couple of tests for CompositeControl.

2005-08-09  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* BaseDataListTest.cs: Added tests for OnDataBinding.
	* DataLitItemTest.cs: Added more useful tests for rendering items, 
	including a test when two tables are present and extractRows is true.
	Added tests for IDataItemContainer (2.0).

2005-08-08  Jackson Harper  <jackson@ximian.com>

	* PagedDataSourceTest.cs: Tests for creating enumerators when
	paging is not enabled.

2005-08-08  Sebastien Pouliot  <sebastien@ximian.com>

	* HyperLinkTest.cs: Updated comments. Resolve doesn't work when doing
	unit tests (probably because it requires a Page, or something else 
	that can be used as the base url for the application).

2005-08-03  Peter Dennis Bartok  <pbartok@novell.com>

	* EditCommandColumnTest.cs: Updated; InitializeCell() passes except
	  for the missing footer; InitializeCellEdit() has a problem with
	  the name given to the TextBox controls

2005-08-05  Jackson Harper  <jackson@ximian.com>

	* PagedDataSourceTest.cs: Tests for PageCount.

2005-08-04  Ben Maurer  <bmaurer@ximian.com>

	* CalendarTest.cs: Test based on an msdn example. Again, I (heart)
	anonymous methods.

2005-08-04  Dick Porter  <dick@ximian.com>

	* DataGridColumnTest.cs: Tests for DataGridColumn

2005-08-03  Ben Maurer  <bmaurer@ximian.com>

	* RepeatInfoTest.cs: Test for copying from base control

	* WebControlTest.cs: Issue I found while doing repeatinfo

	* LabelTest.cs: New tests.

	* PanelTest.cs: New tests

2005-08-03  Peter Dennis Bartok  <pbartok@novell.com>

	* EditCommandColumnTest.cs: Enable tests

2005-08-03  Peter Dennis Bartok  <pbartok@novell.com> 

	* DataGridPagerStyleTest.cs: Added testcase

2005-08-03  Jordi Mas i Hernandez <jordi@ximian.com>

	*  CalendarTest.cs: Trackview states

2005-08-02  Jackson Harper  <jackson@ximian.com>

	* BoundColumnTest.cs: Start of tests for the BoundColumn class.
	
2005-08-02  Jordi Mas i Hernandez <jordi@ximian.com>

	*  RadioButtonListTest.cs: test unit

2005-08-01  Jackson Harper  <jackson@ximian.com>

	* TableStyleTest.cs: Check that items copied set the styles flags.

2005-08-01  Jackson Harper  <jackson@ximian.com>

	* PagedDataSourceTest.cs: Test the enumerators a little.

2005-07-30  Chris Toshok  <toshok@ximian.com>

	* HyperLinkColumnTest.cs: add some tests for how the column
	initializes a TableCell.

2005-07-30  Ben Maurer  <bmaurer@ximian.com>

	* RepeatInfoTest.auto.cs: Regen.

	* RepeatInfoTest.gen.cs: Autogenerate tests for 0 items

2005-07-29  Chris Toshok  <toshok@ximian.com>

	* BaseCompareValidatorTest.cs (CanConvert): disable B9, until we
	figure out a culture independent way to do it.
	(Convert): same with C17/C18.
	(MiscPropertiesAndMethods): test CutoffYear, GetFullYear, and
	GetDateElementOrder.

2005-07-27  Peter Dennis Bartok  <pbartok@novell.com> 

	* StyleTest.cs: Added font-related tests to check for special
	  Name/Names behaviour

2005-07-29  Chris Toshok  <toshok@ximian.com>

	* BaseCompareValidatorTest.cs: use DateTime to generate the
	strings for our date tests, since they're culture specific.

2005-07-29  Dick Porter  <dick@ximian.com>

	* RadioButtonTest.cs: Added tests for RadioButton

2005-07-29  Jordi Mas i Hernandez <jordi@ximian.com>

	* SelectedDatesCollectionTest.cs: new unit test
	* CalendarDayTest.cs: new unit test
	* CalendarTest.cs: more tests for calendar control

2005-07-28  Jackson Harper  <jackson@ximian.com>

	* EditCommandColumnTest.cs: Make the DataGridTest nested so my
	top secret DataGrid tests will still compile.

2005-07-27  Peter Dennis Bartok  <pbartok@novell.com> 

	* EditCommandColumnTest.cs: Added tests; marked some as NotWorking
	  until PagedDataSource is not throwing NotImpl

2005-07-27  Peter Dennis Bartok  <pbartok@novell.com> 

	* CustomValidatorTest.cs: Added tests

2005-07-27  Peter Dennis Bartok  <pbartok@novell.com>

	* DataGridPagerStyleTest.cs: Added tests

2005-07-26  Peter Dennis Bartok  <pbartok@novell.com>

	* DataGridItemTest.cs: Added tests

2005-07-26  Peter Dennis Bartok  <pbartok@novell.com> 

	* DataGridItemCollectionTest.cs: Added tests

2005-07-26  Ben Maurer  <bmaurer@ximian.com>

	* RepeatInfoTest.cs: Remove tests that are contained below

	* RepeatInfoTest.auto.cs: Generated tests.

	* RepeatInfoTest.gen.cs: A test generator for repeatinfo

2005-07-25  Peter Dennis Bartok  <pbartok@novell.com> 

	* StyleTest.cs: Refined tests

2005-07-25  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: More tests for the pager.

2005-07-22  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Basic test for InitializePager.

2005-07-22  Sebastien Pouliot  <sebastien@ximian.com> 

	* HyperLinkTest.cs: New. (very basic) unit tests for HyperLink.

2005-07-21  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Test the order the events are invoked in when
	creating the control hierarchy.

2005-07-21  Sebastien Pouliot  <sebastien@ximian.com> 

	* BaseDataList.cs: Replace IList test with IEnumerable test.
	* RepeatInfoTest.cs: Ignore the test about the baseControl / NRE.
	* TableCellTest.cs: Added tests for AddParsedSubObject versus the Text
	property (and LiteralControl).

2005-07-21  Peter Dennis Bartok  <pbartok@novell.com> 

	* CustomValidatorTest.cs: Added

2005-07-21  Peter Dennis Bartok  <pbartok@novell.com> 

	* RangeValidatorTest.cs: More test cases

2005-07-21  Sebastien Pouliot  <sebastien@ximian.com>  
 
	* RepeatInfoTest.cs: Added test for RepeatColumn is 0.
	* TableRowTest.cs: Added style rendering tests (for my sanity).

2005-07-21  Jackson Harper  <jackson@ximian.com>

	* PagedDataSourceTest.cs: Test to see what happens when we get a
	non ITypedList.

2005-07-21  Duncan Mak  <duncan@novell.com>

	* HyperLinkColumnTest.cs: Added new test for HyperLinkColumn.

2005-07-20  Peter Dennis Bartok  <pbartok@novell.com> 

	* DropDownListTest.cs: Added [ExpectedException] for double select
	  test

2005-07-20  Ben Maurer  <bmaurer@ximian.com>

	* DropDownListTest.cs (InitialSelectionMade): Add a test for a
	regression that seems to be caused by some change to
	ListItemCollection. Add this file to sources as all tests other
	than this pass using the old impl of ddl except for this, which is
	a regression.

2005-07-20  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* RepeatInfoTest.cs: More unit tests for arguments checks, default 
	values, baseControl (not figured out yet) and OuterTableImplied.

2005-07-20  Jackson Harper  <jackson@ximian.com>
2005-07-20  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Make sure we get back a proper columns
	collection.

2005-07-20  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: The columns collection cached from the
	CreateColumnSet is stored in the view state.

2005-07-20  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* BaseDataListTest.cs: Added more tests ported from DataGridTest.
	* DataListTest.cs: Added more tests ported from DataGridTest.

2005-07-20  Peter Dennis Bartok  <pbartok@novell.com> 

	* ValidationSummaryTest.cs: Added rendering tests

2005-07-20  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Test generating column names with/without
	enabling useDataSource.

2005-07-20  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* DataListTest.cs: Add viewstate test.

2005-07-20  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Check the properties of newly created
	BoundColumns.

2005-07-20  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* BaseDataListTest.cs: Add render tests (all empty).
	* DataListTest.cs: Added Controls vs Items test.
	* WebControlTest.cs: Added new (passing) tests.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* PagedDataSource.cs: New unit test for GetItemProperties.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: New tests for creating column sets.

2005-07-19  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* DataListTest.cs: Add more tests for IRepeatInfoUser.
	* RepeatInfoTest.cs: New. Unit test for RepeatInfo (not exactly what
	I had expected...).

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: New tests for FindControl.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: New test for viewstate saving.

2005-07-19  Chris Toshok  <toshok@ximian.com>

	* BaseValidatorTest.cs: use the right call (SetValidationTextBox)
	in ValidatorTest.

2005-07-19  Peter Dennis Bartok  <pbartok@novell.com> 

	* DropDownListTest.cs: Testcases added
	* RangeValidatorTest.cs: Added
	* ValidatedControlConverterTest.cs: Added
	* ValidationSummaryTest.cs: Added

2005-07-19  Chris Toshok  <toshok@ximian.com>

	* BaseCompareValidatorTest.cs: add date tests.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Bubble tests for Page command. Tests for bad
	Page command bubble event args.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Select can also be bubbled.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: Tests for the BubbleEvent.

2005-07-19  Jackson Harper  <jackson@ximian.com>

	* DataGridTest.cs: New tests. Just does properties and events for
	the most part.

2005-07-18  Chris Toshok  <toshok@ximian.com>

	* BaseCompareValidatorTest.cs: note the lack of Date tests, and
	add null tests.

2005-07-18  Chris Toshok  <toshok@ximian.com>

	* BaseCompareValidatorTest.cs: new tests.

2005-07-19  Ben Maurer  <bmaurer@ximian.com>

	* UnitConverterTest.cs: New tests

2005-07-18  Chris Toshok  <toshok@ximian.com>

	* CompareValidatorTest.cs (CompareValidator_ValueToCompareTest,
	CompareValidator_ControlToCompareTest): new methods.

	* ValidatorTest.cs: add AddTextBox method.

2005-07-18  Chris Toshok  <toshok@ximian.com>

	* RegularExpressionValidatorTest.cs: add a simple validation test.

	* ValidatorTest.cs: add a base class for validator tests, that
	enables a little scaffolding for faking out the test.

2005-07-18  Chris Toshok  <toshok@ximian.com>

	* CompareValidatorTest.cs: new tests.

2005-07-18  Chris Toshok  <toshok@ximian.com>

	* RegularExpressionValidatorTest.cs: new test.

2005-07-18  Sebastien Pouliot  <sebastien@ximian.com>

	* DataListTest.cs: Fix tests for 1.1 which keeps more stuff into it's
	ViewState.

2005-07-15  Peter Dennis Bartok  <pbartok@novell.com> 

	* DropDownListTest.cs: Testcases added

2005-07-15  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: New tests for FindControl.

2005-07-15  Jackson Harper  <jackson@ximian.com>

	* WebControlTest.cs: New test to make sure NamingContainers are
	honoured when rendering client ids.

2005-07-15  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: More tests for the IRepeatInfoUser stuff
	and for rendering.

2005-07-15  Sebastien Pouliot  <sebastien@ximian.com>

	* BaseDataListTest.cs: New. Unit tests for abstract BaseDataList.
	* DataKeyCollectionTest.cs: New. Unit tests for DataKeyCollection.
	* DataListItemCollectionTest.cs: New. Unit tests for 
	DataListItemCollection.
	* DataListItemTest.cs: New. Unit tests for DataListItem (incomplete).
	* DataListTest.cs: New. Unit tests for DataList (incomplete).

2005-07-14  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: Rendering tests.

2005-07-14  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: Fix the exception types thrown for bad
	enums. Mark as NotWorking as this doesn't work with the old
	CheckBoxList class anymore.

2005-07-14  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: Add some rendering tests. These aren't
	fully working yet so they are in the NotWorking category.

2005-07-14  Jackson Harper  <jackson@ximian.com>

	* CheckBoxListTest.cs: This has the potential to be a beautiful
	test.

2005-07-14  Peter Dennis Bartok  <pbartok@novell.com> 

	* WebColorConverter.cs: Testcases added

2005-07-14  Jackson Harper  <jackson@ximian.com>

	* ListControlTest.cs: New test for the viewstate and item
	selection.

2005-07-14  Dick Porter  <dick@ximian.com>

	* CheckBoxTest.cs: Added enum checks

2005-07-14  Peter Dennis Bartok  <pbartok@novell.com> 

	* TargetConverterTest.cs: Testcases added

2005-07-14  Duncan Mak  <duncan@novell.com>

	* PagedDataSourceTest.cs: Added testcases.
	(PageCountTest, CountTest, IsLastPageTest): Needs more work.

2005-07-13  Peter Dennis Bartok  <pbartok@novell.com> 

	* FontNamesConverterTest.cs: Testcases added

2005-07-13  Peter Dennis Bartok  <pbartok@novell.com>

	* ListItemCollectionTest.cs: Added
	* ListBoxTest.cs: Marked test as not working since it dependes on
	  ListControl making a call to an obsolete internal method

2005-07-13  Jackson Harper  <jackson@ximian.com>

	* ListControlTest.cs: New tests for the ListControl.

2005-07-13  Jackson Harper  <jackson@ximian.com>

	* ListBoxTest.cs: Exception is thrown (by ListControl). Dont run
	the BadBorderStyle test as this fails in ListControls.

2005-07-13  Sebastien Pouliot  <sebastien@ximian.com>

	* ImageTest.cs: Added tests for DescriptionUrl in 1.1 profile as this
	property was added in Fx 1.1 SP1.
	* StyleTest.cs: Added more tests for CopyFrom to test it's behavior,
	e.g. it doesn't reset itself nor remove it's properties if they're
	not part of the copied Style instance.
	* TableTest.cs: Adjusted values so we're not testing a 100% match with
	MS lines/indentations.
	* TableRowTest.cs: Use Ben's trick on StreamWriter (\r\n). Adjusted
	values so we're not testing a 100% match with MS lines/indentations.
	* WebControlTest.cs: Added tests to remove attributes and style before
	rendering. Empty style properties shouldn't be rendered.

2005-07-13  Dick Porter  <dick@ximian.com>

	* CheckBoxTest.cs: Added tests for CheckBox - currently all
	passing on mono and ms runtimes.

2005-07-12  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* WebControlTest.cs: Added another test for RenderBeginTag, this time
	using an attribute (renamed old test as it was for style attributes).

2005-07-12  Peter Dennis Bartok  <pbartok@novell.com>

	* WebControlTest.cs: Added test for loading/saving of state. Switched
	  to use Sebastiens GetWriter method

2005-07-12  Jackson Harper  <jackson@ximian.com>

	* ListBoxTest.cs: Some simple tests for the ListBox control.
	
2005-07-12  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* TableTest.cs: Use Ben's trick on StreamWriter.
	* WebControlTest.cs: Added tests for RenderBeginTag.

2005-07-12  Sebastien Pouliot  <sebastien@ximian.com>

	* TableCellTest.cs: New. Unit tests for TableCell.
	* TableItemStyleTest.cs: New. Unit tests for TableItemStyle.
	* TableHeaderCellTest.cs: New. Unit tests for TableHeaderCell.
	* TableRowTest.cs: New. Unit tests for TableRow.
	* TableStyleTest.cs: New. Unit tests for TableStyle.
	* TableTest.cs: New. Unit tests for Table.

2005-07-12  Miguel de Icaza  <miguel@novell.com>

	* UnitTest.cs: Update test suite.

2005-07-12  Jordi Mas i Hernandez <jordi@ximian.com>

	* ButtonTest.cs: add Default constructors tests
	* ImageButtonTest.cs: Adds ImageButtonTest 

2005-07-11  Peter Dennis Bartok  <pbartok@novell.com>

	* WebControlTest.cs: Added test.

2005-07-11  Sebastien Pouliot  <sebastien@ximian.com> 
 
	* FontUnitTest.cs: Added more tests when looking for another bug...
	* StyleTest.cs: Added some unit tests for a null ctor and checks for
	emptyness.

2005-07-11  Jordi Mas i Hernandez <jordi@ximian.com>

	* ButtonTest.cs: New unit test for Button

2005-07-08  Sebastien Pouliot  <sebastien@ximian.com>

	* ImageTest.cs: New. Unit tests for Image.

2005-07-08  Jackson Harper  <jackson@ximian.com>

	* LiteralTest.cs: new test.
	* MonthCalendarEventArgsTest.cs: new test.

2005-07-08  Jackson Harper  <jackson@ximian.com>

	* AdCreatedEventArgsTest.cs: Added test.

2005-07-07  Miguel de Icaza  <miguel@novell.com>

	* XmlTest.cs: Added test.  

2005-07-07  Peter Dennis Bartok  <pbartok@novell.com>

	* StyleTest.cs: Added test.

2005-07-07  Miguel de Icaza  <miguel@novell.com>

	* LabelTest.cs: Add test.

2005-07-07  Ben Maurer  <bmaurer@ximian.com>

	* FontUnitTest.cs: Make it run on msft

2005-07-06  Miguel de Icaza  <miguel@novell.com>

	* FontUnitTest.cs: New unit tests.

	* UnitTest.cs: Add support for different cultures and the Decimal
	separator,
	
	* UnitTest.cs: Add tests for null and "" arguments to Parse and
	Unit(string) which produce IsEmpty units. 

	* UnitTest.cs: Fresh file with tests.

2004-10-08  Sanjay Gupta <gsanjay@novell.com>

	* TestControlIDConverter.cs: Added new test file for ControlIDConverter.