| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884 |
- 2006-11-23 Igor Zelmanovich <[email protected]>
- * BoundFieldTest.cs: removed NotWorking attributes.
- 2006-11-23 Igor Zelmanovich <[email protected]>
- * SiteMapDataSourceTest.cs: removed NotWorking attributes.
- 2006-11-23 Yoni Klain <[email protected]>
- * CheckBoxTest.cs: added new test for 2.0
- 2006-11-23 Yoni Klain <[email protected]>
- * ButtonColumnTest.cs: added new test for 2.0
-
- 2006-11-23 Yoni Klain <[email protected]>
- * ButtonTest.cs: added new test for 2.0
- 2006-11-23 Igor Zelmanovich <[email protected]>
- * SiteMapPathTest.cs: two tests were removed as not relevant.
- 2006-11-23 Vladimir Krasnov <[email protected]>
- * added: ChangePasswordTest.cs, PasswordRecoveryTest.cs
- 2006-11-22 Vladimir Krasnov <[email protected]>
- * SqlDataSourceDerbyTest.cs: fixed db init
- 2006-11-22 Igor Zelmanovich <[email protected]>
- * CircleHotSpotTest.cs: removed NotWorking attributes.
- 2006-11-22 Igor Zelmanovich <[email protected]>
- * CookieParameterTest.cs: removed NotWorking attributes.
- 2006-11-22 Igor Zelmanovich <[email protected]>
- * ParameterTest.cs: removed NotWorking attributes.
- * QueryStringParameterTest.cs: removed NotWorking attributes.
- * SessionParameterTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * ImageMapTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * HotSpotTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * CallBackTest.cs: fixed tests, removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * DataSourceViewTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * CrossPagePostingTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * DataSourceControlTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * ControlParameterTest.cs: removed NotWorking attributes.
- 2006-11-21 Igor Zelmanovich <[email protected]>
- * CheckBoxTest.cs: removed NotWorking attributes.
- 2006-11-16 Igor Zelmanovich <[email protected]>
- * CreateUserWizardTest.cs: added test.
- 2006-11-15 Igor Zelmanovich <[email protected]>
- * ListControlTest.cs: added test.
- 2006-11-14 Igor Zelmanovich <[email protected]>
- * BaseDataBoundControlTest.cs: added tests.
- * GridViewTest.cs: added tests.
- 2006-11-14 Igor Zelmanovich <[email protected]>
- * CompositeDataBoundControlTest.cs: added tests.
- 2006-11-13 Vladimir Krasnov <[email protected]>
- * LoginTest.cs: login tests converted to webtest
- * LoginViewTest.cs: removed NotWorking attributes
- 2006-11-13 Igor Zelmanovich <[email protected]>
- * CompositeDataBoundControlTest.cs: added tests.
- 2006-11-13 Vladimir Krasnov <[email protected]>
- * WizardTest.cs: removed NotWorking attributes,
- removed Init test (implementeation specific)
- 2006-11-12 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: added tests.
- 2006-11-12 Vladimir Krasnov <[email protected]>
- * MultiViewTest.cs: removed NotWorking test
- 2006-11-09 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: removed NotWorking attributes.
- 2006-11-09 Vladimir Krasnov <[email protected]>
- * ObjectDataSourceTest.cs, ObjectDataSourceViewTest.cs: removed
- NotWorking attributes, added test case
- 2006-11-09 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: added tests, removed NotWorking attributes.
- 2006-11-09 Igor Zelmanovich <[email protected]>
- * DataBoundControlTest.cs: added test.
- 2006-11-07 Andrew Skiba <[email protected]>
- * HyperLinkFieldTest.cs, SiteMapDataSourceTest.cs, ThemeTest.cs,
- TreeNodeBindingTest.cs, TreeNodeTest.cs, WebColorConverterTest.cs:
- TARGET_JVM
- 2006-11-07 Andrew Skiba <[email protected]>
- * ListControlTest.cs: add an assert to test
- 2006-11-07 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: TARGET_JVM and test message
- * FormViewTest.cs, GridViewTest.cs: TARGET_JVM
- 2006-11-06 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: added tests, removed NotWorking attributes.
-
- 2006-11-02 Igor Zelmanovich <[email protected]>
- * CustomValidatorTest.cs: removed NotWorking attributes.
-
- 2006-11-02 Igor Zelmanovich <[email protected]>
- * BaseCompareValidatorTest.cs: removed NotWorking attributes, fixed tests
-
- 2006-11-01 Igor Zelmanovich <[email protected]>
- * MenuTest.cs: removed NotWorking attributes
-
- 2006-11-01 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: removed NotWorking attributes, fixed tests
-
- 2006-11-01 Igor Zelmanovich <[email protected]>
- * FormViewRowTest.cs: removed NotWorking attributes
- * FormViewTest.cs: removed NotWorking attributes, fixed tests
-
- 2006-10-30 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attributes
-
- 2006-10-30 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attributes
-
- 2006-10-30 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attributes
-
- 2006-10-30 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: removed NotWorking attributes
-
- 2006-10-30 Igor Zelmanovich <[email protected]>
- * DropDownListTest.cs: removed NotWorking attribute
-
- 2006-10-29 Igor Zelmanovich <[email protected]>
- * RadioButtonListTest.cs: fixed test Render for 2.0
-
- 2006-10-29 Igor Zelmanovich <[email protected]>
- * ListControlTest.cs: removed NotWorking attributes
-
- 2006-10-29 Igor Zelmanovich <[email protected]>
- * ListControlTest.cs: removed NotWorking attributes
-
- 2006-10-29 Igor Zelmanovich <[email protected]>
- * DataBoundControlTest.cs: new test was added
- * ListControlTest.cs: removed NotWorking attributes
-
- 2006-10-29 Igor Zelmanovich <[email protected]>
- * ListControlTest.cs: removed NotWorking attributes
-
- 2006-10-29 Igor Zelmanovich <[email protected]>
- * ListControlTest.cs: removed NotWorking attributes
-
- 2006-10-26 Yoni Klain <[email protected]>
-
- * Changed tests for to be runned on run-tests-ondotnet,
- and added categories for ondotnet, and notworking for
- mono.
-
- 2006-10-24 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: new test was added
-
- 2006-10-24 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: removed NotWorking attributes
-
- 2006-10-23 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: new tests were added
-
- 2006-10-23 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: new tests were added
-
- 2006-10-23 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: new tests were added
-
- 2006-10-23 Merav Sudri <[email protected]>
- * FormParameterTest.cs and ParameterTest.cs were added
- 2006-10-23 Igor Zelmanovich <[email protected]>
- * CompositeDataBoundControlTest.cs: new Test
-
- 2006-10-18 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: removed NotWorking attributes
-
- 2006-10-18 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: added test
-
- 2006-10-18 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: removed NotWorking attributes
- * DetailsViewRowCollectionTest.cs: removed NotWorking attributes
-
- 2006-10-18 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: added test
-
- 2006-10-17 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: added tests
-
- 2006-10-17 Igor Zelmanovich <[email protected]>
- * DataBoundControlTest.cs: added test
-
- 2006-10-17 Vladimir Krasnov <[email protected]>
- * added: SqlDataSourceDerbyTest.cs
- 2006-10-17 Igor Zelmanovich <[email protected]>
- * DetailsViewTest.cs: added tests
-
- 2006-10-12 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: added tests
-
- 2006-10-12 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: added test
-
- 2006-10-11 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: added test
-
- 2006-10-11 Igor Zelmanovich <[email protected]>
- * ObjectDataSourceViewTest.cs: New test was added
-
- 2006-10-11 Merav Sudri <[email protected]>
- * The following new tests were added:
- * System.Web.UI.WebControls.SessionParameterTest.cs
- * System.Web.UI.WebControls.CookieParameterTest.cs
- * System.Web.UI.WebControls.QueryStringParameterTest.cs
- * System.Web.UI.WebControls.ControlParameterTest.cs
- 2006-10-10 Yoni Klain <[email protected]>
- * System.Web.UI.WebControls.BaseCompareValidatorTest.cs new tests added;
- 2006-10-10 Yoni Klain <[email protected]>
- * System.Web.UI.WebControls.CustomValidatorTest.cs new tests added;
- 2006-10-10 Igor Zelmanovich <[email protected]>
- * DataBoundControlTest.cs: New test was added
-
- 2006-10-08 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: added test
-
- 2006-10-05 Igor Zelmanovich <[email protected]>
- * WebControlTest.cs: added test
-
- 2006-10-04 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attribute
-
- 2006-10-04 Igor Zelmanovich <[email protected]>
- * GridViewTest.cs: added test
-
- 2006-09-28 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attributes, fixed tests
-
- 2006-09-28 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attribute, fixed test
-
- 2006-09-28 Igor Zelmanovich <[email protected]>
- * FormViewTest.cs: removed NotWorking attributes
-
- 2006-09-28 Yoni Klain <[email protected]>
- * MasterPageTest.cs: Some new tests was added.
- 2006-09-26 Yoni Klain <[email protected]>
- * CheckBoxTest.cs: Some new tests was added.
- 2006-09-25 Igor Zelmanovich <[email protected]>
- * DataBoundControlTest.cs: New test was added
-
- 2006-09-19 Yoni Klain <[email protected]>
- * CrossPagePostingTest.cs: New test was added
- 2006-09-18 Yoni Klain <[email protected]>
- * MappingUrlTest.cs: New test was added
- * new attributes added
- 2006-09-12 Igor Zelmanovich <[email protected]>
- * TreeNodeTest.cs: fixed tests, removed NotWorking attributes
- 2006-09-12 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: fixed test, removed NotWorking attributes
- 2006-09-11 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: fixed tests, removed NotWorking attributes
- 2006-09-10 Igor Zelmanovich <[email protected]>
- * TableNodeStyleTest.cs: New test was added
- 2006-09-10 Igor Zelmanovich <[email protected]>
- * TableStyle.cs: New test was added
- * TableItemStyle.cs: New test was added
- 2006-09-07 Igor Zelmanovich <[email protected]>
- * TreeNodeTest.cs: New test was added
- 2006-09-06 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: New test was added
- 2006-09-06 Igor Zelmanovich <[email protected]>
- * TreeNodeCollectionTest.cs: New test was added
- 2006-09-06 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: removed NotWorking attribute
- 2006-09-06 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: removed NotWorking attribute
- 2006-09-06 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: removed NotWorking attribute
- 2006-09-05 Igor Zelmanovich <[email protected]>
- * TreeNodeStyleCollectionTest.cs: New test was added
- 2006-09-04 Igor Zelmanovich <[email protected]>
- * StyleTest.cs: New test was added
- 2006-08-31 Igor Zelmanovich <[email protected]>
- * CompleteWizardStepTest.cs: New tests were added
- * CreateUserWizardStepTest.cs: New tests were added
- * CreateUserWizardTest.cs: New tests were added
- 2006-08-29 Igor Zelmanovich <[email protected]>
- * ButtonTest.cs: New tests were added
- 2006-08-27 Igor Zelmanovich <[email protected]>
- * TreeViewTest.cs: New test was added, removed NotWorking attributes
- 2006-08-27 Igor Zelmanovich <[email protected]>
- * TreeNodeStyleTest.cs: New test was added
- 2006-08-23 Igor Zelmanovich <[email protected]>
- * TreeNodeBindingTest.cs: removed NotWorking attributes
- 2006-08-27 Hagit Yidov <[email protected]>
- * TreeNodeBindingCollectionTest.cs: New test was added
- * TreeNodeBindingTest.cs: New test was added
- * TreeNodeCollectionTest.cs: New test was added
- * TreeNodeStyleCollectionTest.cs: New test was added
- * TreeNodeTest.cs: New test was added
- * TreeViewTest.cs: Test was updated
- 2006-08-10 Hagit Yidov <[email protected]>
- * ImageMapTest.cs: New test was added
- * HotSpotTest.cs: New test was added
- * HotSpotCollectionTest.cs: New test was added
- * CircleHotSpot.cs: New test was added
- * RectangleHotSpot.cs: New test was added
- * PolygonHotSpot.cs: New test was added
- 2006-08-23 Igor Zelmanovich <[email protected]>
- * MenuTest.cs: added tests
- 2006-08-23 Igor Zelmanovich <[email protected]>
- * StyleTest.cs:
- added tests ensure that AddAttributesToRender method calls FillStyleAttributes
- and style attributes work properly.
- 2006-08-23 Igor Zelmanovich <[email protected]>
- * FontInfoTest.cs: added test
- 2006-08-22 Igor Zelmanovich <[email protected]>
- * FontInfoTest.cs: added test: CopyFrom and MergeWith behave differently between 1.1 and 2.0
- 2006-08-17 Igor Zelmanovich <[email protected]>
- * StyleTest.cs: added test ensures that IsEmpty returns false for
- empty style that was registered with StyleSheet
- 2006-08-17 Igor Zelmanovich <[email protected]>
- * StyleTest.cs: new test was added, fixed Style_CssClass test
- 2006-08-16 Yoni Klain <[email protected]>
- * DataSourceViewTest.cs; DataSourceControlTest.cs : new tests
- 2006-08-15 Igor Zelmanovich <[email protected]>
- * MenuTest.cs: new test was added, removed NotWorking attributes
- 2006-08-15 Igor Zelmanovich <[email protected]>
- * MenuTest.cs: new tests were added.
- 2006-08-14 Andrew Skiba <[email protected]>
- * TableTest.cs: new test added.
- 2006-08-14 Igor Zelmanovich <[email protected]>
- * MenuTest.cs: added test showing that items initialization should occurs only once
- 2006-08-10 Yoni Klain <[email protected]>
- * CallBackTest.cs: New test was added
- 2006-08-010 Hagit Yidov <[email protected]>
- * ImageMapTest.cs: New test was added
- * HotSpotTest.cs: New test was added
- * HotSpotCollectionTest.cs: New test was added
- * CircleHotSpot.cs: New test was added
- * RectangleHotSpot.cs: New test was added
- * PolygonHotSpot.cs: New test was added
- >>>>>>> .r64424
- 2006-08-10 Igor Zelmanovich <[email protected]>
- * MenuTest.cs: new tests were added
- >>>>>>> .r63580
- 2006-08-09 Igor Zelmanovich <[email protected]>
- * HierarchicalDataBoundControlTest.cs: added new tests
- 2006-08-08 Merav Sudri <[email protected]>
- * ObjectDataSourceTest.cs: SetUp with delay was added to the test.
- 2006-08-08 Merav Sudri <[email protected]>
- * ObjectDataSourceTest.cs: New test was added
-
- 2006-08-08 Yoni Klain <[email protected]>
- * LoginViewTest.cs: added new tests and new resources for tests
- * ObjectDataSourceView.cs: added new tests
- 2006-08-06 Vladimir Krasnov <[email protected]>
- * CommandFieldTest.cs:
- * GridViewRowCollectionTest.cs:
- * MultiViewTest.cs:
- * SiteMapPathTest.cs:
- * ViewTest.cs:
- * XmlDataSourceTest.cs: removed NotWorking attributes
- 2006-08-06 Vladimir Krasnov <[email protected]>
- * ThemeTest.cs: fixed test resource
- 2006-08-06 Vladimir Krasnov <[email protected]>
- * ThemeTest.cs: tests added
- 2006-08-01 Vladimir Krasnov <[email protected]>
- * BulletedListTest.cs: fixed new line in render tests
- 2006-07-31 Vladimir Krasnov <[email protected]>
-
- * WizardStepBaseTest.cs:
- * MasterPageTest.cs
- * MenuTest.cs
- * GridViewTest.cs: removed NotWorking attributes
- 2006-07-30 Andrew Skiba <[email protected]>
- * FormViewTest.cs: fix few tests.
- 2006-07-30 Vladimir Krasnov <[email protected]>
- * WizardTest.cs: fixed test, removed NotWorking attributes
- 2006-07-27 Andrew Skiba <[email protected]>
- * FormViewTest.cs: fix few tests.
- 2006-07-27 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: fix tests.
- 2006-07-26 Vladimir Krasnov <[email protected]>
- * XmlDataSourceTest.cs: fixed aspx based tests
- 2006-07-26 Andrew Skiba <[email protected]>
- * FormViewTest.cs: visual studio ifdef.
- 2006-07-26 Andrew Skiba <[email protected]>
- * DetailsViewRowTest.cs: fix the test (incomplete).
- 2006-07-26 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: fix few tests.
- 2006-07-26 Yoni Klain <[email protected]>
- * XmlDataSourceTest.cs: Add new tests.
- 2006-07-25 Vladimir Krasnov <[email protected]>
- * MultiViewTest.cs: added test
- 2006-07-25 Vladimir Krasnov <[email protected]>
- * GridViewTest.cs:
- * ViewTest.cs:
- * WizardStepBaseTest.cs:
- * WizardTest.cs: fixed tests
- 2006-07-25 Merav Sudri <[email protected]>
- * FormViewTest.cs: Add three postback tests.
- 2006-07-24 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: split a test in two, working and not working.
- 2006-07-23 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: fix the test.
- 2006-07-20 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: more precise lifetime flow check.
- 2006-07-20 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: add EnsureChildControls basic test.
- 2006-07-20 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: add a new assert
- 2006-07-20 Vladimir Krasnov <[email protected]>
- * PagerSettingsTest.cs: fixed PropertyChanged test
- 2006-07-19 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: #if VISUAL_STUDIO
- 2006-07-20 Yoni Klain <[email protected]>
- * GridViewTest.cs: added new tests
- 2006-07-19 Andrew Skiba <[email protected]>
- * DetailsViewTest.cs: #if NET_2_0
- * TableStyleTest.cs: Category ("NotWorking")
-
- 2006-07-19 Andrew Skiba <[email protected]>
- * TableStyleTest.cs: add a test for BackImageUrl rendering
- 2006-07-19 Merav Sudri <[email protected]>
- * DetailsViewRowTest.cs: added new test
- * DetailsViewRowCollectionTest.cs: added new test
- * FormViewRowTest.cs: added new test
- * FormViewTest.cs: added new test
- 2006-07-19 Merav Sudri <[email protected]>
- * DetailsViewTest.cs: added new test
- 2006-07-18 Vladimir Krasnov <[email protected]>
- * GridViewTest.cs: removed NotWorking attributes, added tests
- 2006-07-17 Yoni Klain <[email protected]>
- * SiteMapPathTest.cs: added new test
- 2006-07-17 Andrew Skiba <[email protected]>
- * CommandFieldTest.cs: added positive flow test for
- ValidateSupportsCallback
- 2006-07-17 Andrew Skiba <[email protected]>
- * WebControlTest.cs: added tests for display style
-
- 2006-07-17 Vladimir Krasnov <[email protected]>
- * GridViewTest.cs: added new test
- 2006-07-16 Vladimir Krasnov <[email protected]>
- * BoundFieldTest.cs: added new test
- 2006-07-16 Andrew Skiba <[email protected]>
- * SiteMapPathTest.cs: fix expected results for dotnet in 3 tests;
- add 2 new asserts for InitializeItem
- 2006-07-16 Vladimir Krasnov <[email protected]>
- * BulletedListTest.cs: removed NotWorking attributes
- 2006-07-16 Yoni Klain <[email protected]>
- * added WizardStepBaseTest.cs; WizardStepTest.cs; WizardStepCollectionTest.cs
-
- 2006-07-13 Gonzalo Paniagua Javier <[email protected]>
- * DataListTest.cs: new test for templated items. Patch by Jaros?aw
- Pawlak.
- 2006-07-12 Yoni Klain <[email protected]>
- * WizardTest.cs added new tests;
- * SiteMapPathTest.cs removed remarks
- 2006-07-11 Vladimir Krasnov <[email protected]>
-
- * GridViewTest.cs: added GridView_RenderingCheckBoxField2
- for testing of autogenerated checkbox column
- 2006-07-11 Yoni Klain <[email protected]>
- * ImageFieldTest.cs added new tests;
- 2006-07-10 Andrew Skiba <[email protected]>
- * SiteMapPathTest.cs: fix expected results for IE user-agent
- >>>>>>> .r62654
- 2006-07-09 Yoni Klain <[email protected]>
- * MenuTest.cs changes on postback;
- 2006-07-09 Yoni Klain <[email protected]>
- * ContentTest.cs changes on event test;
- 2006-07-07 Yoni Klain <[email protected]>
- * added PagerSettingsTest.cs;GridViewRowCollectionTest.cs;
- ContentTest.cs;GridViewRowTest.cs
- 2006-07-07 Yoni Klain <[email protected]>
- * GridViewTest.cs, MenuTest.cs added PostBack tests
- 2006-07-05 Vladimir Krasnov <[email protected]>
-
- * added CreateUserWizardTest.cs
- 2006-07-03 Vladimir Krasnov <[email protected]>
- * BoundFieldTest.cs, ButtonFieldTest.cs, DataControlFieldTest.cs
- HyperLinkFieldTest.cs, ImageFieldTest.cs: removed NotWorking
- attribute from Initialize test case
- 2006-06-28 Juraj Skripsky <[email protected]>
- * RegularExpressionValidatorTest.cs: check for automatic wrapping of
- expression with "^...$".
- 2006-06-28 Vladimir Krasnov <[email protected]>
- * Added WizardTest.cs: Wizard control basic tests
- 2006-06-25 Yoni Klain <[email protected]>
- * GridViewTest.cs;
- * AutoGeneratedFieldTest.cs;BoundFieldTest.cs;DataControlFieldTest.cs;
- * DataControlFieldCollectionTest.cs;DataKeyArrayTest.cs;
- * DataKeyTest.cs;ButtonFieldBaseTest.cs;HyperLinkFieldTest.cs;
- * CommandFieldTest.cs;CheckBoxFieldTest.cs;TemplateFieldTest.cs
- * GridView test and GridView subclasses tests.
- 2006-06-25 Konstantin Triger <[email protected]>
- * FormViewTest.cs: test for PageIndex bounds.
- 2006-06-21 Andrew Skiba <[email protected]>
- * ThemeTest.cs, SiteMapPathTest.cs, FormViewTest.cs, MenuTest.cs,
- MasterPageTest.cs: NunitWeb refactoring
- 2006-06-21 Andrew Skiba <[email protected]>
- * FileUploadTest.cs: add new tests for FileUpload control
- 2006-06-20 Andrew Skiba <[email protected]>
- * ThemeTest.cs: add new test for UrlPropertyAttribute
- 2006-06-20 Andrew Skiba <[email protected]>
- * FormViewTest.cs: add new test for CssClass attribute
- 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
- * RepeaterItemCollectionTest.cs: New file.
- 2006-06-14 Andrew Skiba <[email protected]>
- * MenuTest.cs: add test for CssClass attribute
- 2006-06-13 Juraj Skripsky <[email protected]>
- * CalendarTest.cs (SelectDateProperty): Make sure SelectedDate is
- automatically "rounded" to the same date with time set to 12:00am.
- 2006-05-28 Andrew Skiba <[email protected]>
- * ThemeTest.cs, MenuTest.cs, MasterPageTest.cs: rename methods to make
- nunit quiet
- 2006-05-21 Yoni Klain <[email protected]>
- * ThemeTest.cs - Add new test
- 2006-05-21 Yoni Klain <[email protected]>
- * MasterPageTest.cs - add attributes for NotWorking tests
- * MenuTest.cs - sleep time changed
- 2006-05-21 Yoni Klain <[email protected]>
- * Added MasterPageTest.cs
- 2006-05-21 Yoni Klain <[email protected]>
- * MenuTest.cs, SiteMapPathTest.cs ,BulletedListTest.cs - add attributes for NotWorking tests
-
- 2006-05-21 Yoni Klain <[email protected]>
- * Added ContentTest.cs
- 2006-05-17 Andrew Skiba <[email protected]>
- * MenuTest.cs, SiteMapPathTest.cs: multiple changes, now passes on
- dotnet with mono makefile
- 2006-05-14 Yoni Klain <[email protected]>
- * Added MenuTest.cs
- 2006-05-14 Yoni Klain <[email protected]>
- * Added SiteMapPathTest.cs
- 2006-04-30 Yoni Klain <[email protected]>
- * Added SiteMapDataSourceTest.cs
- 2006-04-23 Tal Klahr <[email protected]>
- * Added ViewTest.cs and MultiViewTest.cs
- 2006-04-25 Konstantin Triger <[email protected]>
- * FormViewTest.cs: added test for PageCount.
- 2006-04-20 Konstantin Triger <[email protected]>
- * FormViewTest.cs: added test for PageIndex.
- 2006-04-06 Konstantin Triger <[email protected]>
- * DataListTest.cs: added test for DataSourceID.
- 2006-04-06 Konstantin Triger <[email protected]>
- * LoginTest.cs: Added LayoutTemplate property Test.
- * LoginViewTest.cs: Added AnonymousTemplate property Test.
- 2006-03-28 Alexandre Miguel Pedro Gomes <[email protected]>
-
- * FontInfoTest.cs: Implemented ShouldSerializeNames tests
- 2006-03-06 Vladimir Krasnov <[email protected]>
- * CalendarTest.cs: refactoring, inline delegates replaced with
- regular ones.
- * LinkButtonTest.cs: same
- 2006-03-03 Vladimir Krasnov <[email protected]>
- * PagedDataSourceTest.cs: added TARGET_JVM part to exclude
- not working tests.
- * WebControlTest.cs: same
- 2006-02-21 Chris Toshok <[email protected]>
- * SqlDataSourceTest.cs, SqlDataSourceViewTest.cs,
- AccessDataSourceTest.cs: new tests.
- 2005-12-14 Gonzalo Paniagua Javier <[email protected]>
- * DropDownListTest.cs: test for html-encoding of the text.
- 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
- * RadioButtonTest.cs: more tests for the 'name' attribute.
- 2005-10-24 Gonzalo Paniagua Javier <[email protected]>
- * LiteralTest.cs: Literal allows LiteralControl.
- 2005-10-20 Gonzalo Paniagua Javier <[email protected]>
- * ListBoxTest.cs: a few more tests for ListBox and selection.
- 2005-10-18 Gonzalo Paniagua Javier <[email protected]>
- * ListControlTest.cs: 3 more tests for ListControl.
- 2005-10-17 Gonzalo Paniagua Javier <[email protected]>
- * CustomValidatorTest.cs: an empty control name is valid.
- 2005-10-17 Sebastien Pouliot <[email protected]>
- * RequiredFieldValidatorCas.cs: New. CAS unit for
- RequiredFieldValidator.
- 2005-10-10 Gonzalo Paniagua Javier <[email protected]>
- * DataListTest.cs: added some style and IRepeatInfoUser tests.
- 2005-10-04 Gonzalo Paniagua Javier <[email protected]>
- * ListBoxTest.cs: the name is the UniqueID, not the ClientID.
- * WebControlTest.cs: Attributes statebag is case insensitive.
- 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
- * ImageButtonTest.cs: test that 'name' attribute is rendered.
- 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
- * DataGridTest.cs: Test for ButtonColumn with DataTextField.
- 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * PagedDataSourceTest.cs: more tests.
- 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
- * PagedDataSourceTest.cs: more tests.
- 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * PagedDataSourceTest.cs: nullref is throw on null DataSource.
- 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * DataGridTest.cs: more tests that add a TemplateColumn.
- 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * ListControlTest.cs: new tests for SelectedValue, SelectedIndex and
- DataBinding.
- 2005-09-24 Gonzalo Paniagua Javier <[email protected]>
- * DataGridTest.cs:
- * DataListTest.cs: OnItemCommand is raised always in OnBubbleEvent.
- 2005-09-23 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
-
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * DataGridTest.cs: fix expected/actual order. Added test for HeaderText
- and empty ArrayList.
- 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
- * TableCellTest.cs: TableCell does not get an automatic ID.
- 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
- * TableStyleTest.cs: added test to check that GridLines is correctly
- restored in LoadViewState.
- 2005-09-13 Gonzalo Paniagua Javier <[email protected]>
- * TableCellTest.cs: added new test cases for bug #76078.
- 2005-09-09 Gonzalo Paniagua Javier <[email protected]>
- * ListItemTest.cs: tests for ListItem.
- * RadioButtonListTest.cs: more test for load/raise.
- 2005-09-09 Chris Toshok <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * ListControlTest.cs: add tests for the ControlState.
- 2005-09-05 Chris Toshok <[email protected]>
- * FormViewTest.cs: new tests.
- 2005-09-05 Chris Toshok <[email protected]>
- * DataBoundControlTest.cs: new tests.
- * BaseDataBoundControlTest.cs: new tests.
- 2005-09-01 Chris Toshok <[email protected]>
- * ListControlTest.cs (DefaultProperties): add tests for TagKey,
- Text, and AppendDataBoundItems.
- (ViewStateContents): add checks for Text and AppendDataBoundItems.
- 2005-09-01 Raja R Harinath <[email protected]>
- * 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 <[email protected]>
- * TreeViewTest.cs: beginnings of new tests.
- * RepeaterTest.cs: same.
- * XmlDataSourceTest.cs: same.
- 2005-08-27 Chris Toshok <[email protected]>
- * TextBoxTest.cs: add 2.0 test to show that validation properties
- have no effect on downlevel rendering.
- 2005-08-26 Chris Toshok <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * TableStyleTest.cs: New test cases for 2.0.
- 2005-08-25 Sebastien Pouliot <[email protected]>
-
- * 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 <[email protected]>
- * CalendarTest.cs: add viewstate tests for Caption/CaptionAlign
- (2.0).
- 2005-08-25 Sebastien Pouliot <[email protected]>
- * HyperLinkTest.cs: Fixed the expected output rendering for 2.0.
- 2005-08-25 Peter Dennis Bartok <[email protected]>
- * StyleTest.cs: Added tests for CssRegisteredStyle
- 2005-08-25 Sebastien Pouliot <[email protected]>
- * StyleTest.cs: Added test for IsStyleEmpty(null).
- 2005-08-24 Chris Toshok <[email protected]>
- * ValidationSummaryTest.cs (ValidationSummary_ValidationGroup):
- add tests for ValidationGroup, making sure it's stored in the
- ViewState.
- 2005-08-24 Sebastien Pouliot <[email protected]>
- * RoleGroupTest.cs: New (2.0). Unit tests for RoleGroup.
- * RoleGroupCollectionTest.cs: New (2.0). Unit tests for
- RoleGroupCollection.
- 2005-08-23 Chris Toshok <[email protected]>
- * RepeatInfoTest.cs (RenderRepeater_BaseControl): the 2.0 ReatInfo
- class does things a little differently.
- 2005-08-22 Chris Toshok <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * BaseCompareValidatorTest.cs: fix the tests that change behavior
- between 1.x and 2.0.
- 2005-08-22 Chris Toshok <[email protected]>
- * LinkButtonTest.cs: add validation group tests.
- 2005-08-22 Chris Toshok <[email protected]>
- * ImageButtonTest.cs: add NET_2_0 validation tests.
- 2005-08-22 Chris Toshok <[email protected]>
- * CheckBoxTest.cs: add NET_2_0 validation tests.
- 2005-08-22 Chris Toshok <[email protected]>
- * ButtonTest.cs (Button_DefaultValues): add NET_2_0 test for
- ValidationGroup.
- (Button_ViewState): same.
- 2005-08-22 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * TableCellTest.cs: Add test cases for AssociatedHeaderCellID (2.0).
- 2005-08-18 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * CompositeControlTest.cs: a couple of tests for CompositeControl.
- 2005-08-09 Sebastien Pouliot <[email protected]>
-
- * 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 <[email protected]>
- * PagedDataSourceTest.cs: Tests for creating enumerators when
- paging is not enabled.
- 2005-08-08 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * PagedDataSourceTest.cs: Tests for PageCount.
- 2005-08-04 Ben Maurer <[email protected]>
- * CalendarTest.cs: Test based on an msdn example. Again, I (heart)
- anonymous methods.
- 2005-08-04 Dick Porter <[email protected]>
- * DataGridColumnTest.cs: Tests for DataGridColumn
- 2005-08-03 Ben Maurer <[email protected]>
- * 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 <[email protected]>
- * EditCommandColumnTest.cs: Enable tests
- 2005-08-03 Peter Dennis Bartok <[email protected]>
- * DataGridPagerStyleTest.cs: Added testcase
- 2005-08-03 Jordi Mas i Hernandez <[email protected]>
- * CalendarTest.cs: Trackview states
- 2005-08-02 Jackson Harper <[email protected]>
- * BoundColumnTest.cs: Start of tests for the BoundColumn class.
-
- 2005-08-02 Jordi Mas i Hernandez <[email protected]>
- * RadioButtonListTest.cs: test unit
- 2005-08-01 Jackson Harper <[email protected]>
- * TableStyleTest.cs: Check that items copied set the styles flags.
- 2005-08-01 Jackson Harper <[email protected]>
- * PagedDataSourceTest.cs: Test the enumerators a little.
- 2005-07-30 Chris Toshok <[email protected]>
- * HyperLinkColumnTest.cs: add some tests for how the column
- initializes a TableCell.
- 2005-07-30 Ben Maurer <[email protected]>
- * RepeatInfoTest.auto.cs: Regen.
- * RepeatInfoTest.gen.cs: Autogenerate tests for 0 items
- 2005-07-29 Chris Toshok <[email protected]>
- * 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 <[email protected]>
- * StyleTest.cs: Added font-related tests to check for special
- Name/Names behaviour
- 2005-07-29 Chris Toshok <[email protected]>
- * BaseCompareValidatorTest.cs: use DateTime to generate the
- strings for our date tests, since they're culture specific.
- 2005-07-29 Dick Porter <[email protected]>
- * RadioButtonTest.cs: Added tests for RadioButton
- 2005-07-29 Jordi Mas i Hernandez <[email protected]>
- * SelectedDatesCollectionTest.cs: new unit test
- * CalendarDayTest.cs: new unit test
- * CalendarTest.cs: more tests for calendar control
- 2005-07-28 Jackson Harper <[email protected]>
- * EditCommandColumnTest.cs: Make the DataGridTest nested so my
- top secret DataGrid tests will still compile.
- 2005-07-27 Peter Dennis Bartok <[email protected]>
- * EditCommandColumnTest.cs: Added tests; marked some as NotWorking
- until PagedDataSource is not throwing NotImpl
- 2005-07-27 Peter Dennis Bartok <[email protected]>
- * CustomValidatorTest.cs: Added tests
- 2005-07-27 Peter Dennis Bartok <[email protected]>
- * DataGridPagerStyleTest.cs: Added tests
- 2005-07-26 Peter Dennis Bartok <[email protected]>
- * DataGridItemTest.cs: Added tests
- 2005-07-26 Peter Dennis Bartok <[email protected]>
- * DataGridItemCollectionTest.cs: Added tests
- 2005-07-26 Ben Maurer <[email protected]>
- * 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 <[email protected]>
- * StyleTest.cs: Refined tests
- 2005-07-25 Jackson Harper <[email protected]>
- * DataGridTest.cs: More tests for the pager.
- 2005-07-22 Jackson Harper <[email protected]>
- * DataGridTest.cs: Basic test for InitializePager.
- 2005-07-22 Sebastien Pouliot <[email protected]>
- * HyperLinkTest.cs: New. (very basic) unit tests for HyperLink.
- 2005-07-21 Jackson Harper <[email protected]>
- * DataGridTest.cs: Test the order the events are invoked in when
- creating the control hierarchy.
- 2005-07-21 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * CustomValidatorTest.cs: Added
- 2005-07-21 Peter Dennis Bartok <[email protected]>
- * RangeValidatorTest.cs: More test cases
- 2005-07-21 Sebastien Pouliot <[email protected]>
-
- * RepeatInfoTest.cs: Added test for RepeatColumn is 0.
- * TableRowTest.cs: Added style rendering tests (for my sanity).
- 2005-07-21 Jackson Harper <[email protected]>
- * PagedDataSourceTest.cs: Test to see what happens when we get a
- non ITypedList.
- 2005-07-21 Duncan Mak <[email protected]>
- * HyperLinkColumnTest.cs: Added new test for HyperLinkColumn.
- 2005-07-20 Peter Dennis Bartok <[email protected]>
- * DropDownListTest.cs: Added [ExpectedException] for double select
- test
- 2005-07-20 Ben Maurer <[email protected]>
- * 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 <[email protected]>
-
- * RepeatInfoTest.cs: More unit tests for arguments checks, default
- values, baseControl (not figured out yet) and OuterTableImplied.
- 2005-07-20 Jackson Harper <[email protected]>
- 2005-07-20 Jackson Harper <[email protected]>
- * DataGridTest.cs: Make sure we get back a proper columns
- collection.
- 2005-07-20 Jackson Harper <[email protected]>
- * DataGridTest.cs: The columns collection cached from the
- CreateColumnSet is stored in the view state.
- 2005-07-20 Sebastien Pouliot <[email protected]>
-
- * BaseDataListTest.cs: Added more tests ported from DataGridTest.
- * DataListTest.cs: Added more tests ported from DataGridTest.
- 2005-07-20 Peter Dennis Bartok <[email protected]>
- * ValidationSummaryTest.cs: Added rendering tests
- 2005-07-20 Jackson Harper <[email protected]>
- * DataGridTest.cs: Test generating column names with/without
- enabling useDataSource.
- 2005-07-20 Sebastien Pouliot <[email protected]>
-
- * DataListTest.cs: Add viewstate test.
- 2005-07-20 Jackson Harper <[email protected]>
- * DataGridTest.cs: Check the properties of newly created
- BoundColumns.
- 2005-07-20 Sebastien Pouliot <[email protected]>
-
- * 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 <[email protected]>
- * PagedDataSource.cs: New unit test for GetItemProperties.
- 2005-07-19 Jackson Harper <[email protected]>
- * DataGridTest.cs: New tests for creating column sets.
- 2005-07-19 Sebastien Pouliot <[email protected]>
-
- * 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 <[email protected]>
- * CheckBoxListTest.cs: New tests for FindControl.
- 2005-07-19 Jackson Harper <[email protected]>
- * DataGridTest.cs: New test for viewstate saving.
- 2005-07-19 Chris Toshok <[email protected]>
- * BaseValidatorTest.cs: use the right call (SetValidationTextBox)
- in ValidatorTest.
- 2005-07-19 Peter Dennis Bartok <[email protected]>
- * DropDownListTest.cs: Testcases added
- * RangeValidatorTest.cs: Added
- * ValidatedControlConverterTest.cs: Added
- * ValidationSummaryTest.cs: Added
- 2005-07-19 Chris Toshok <[email protected]>
- * BaseCompareValidatorTest.cs: add date tests.
- 2005-07-19 Jackson Harper <[email protected]>
- * DataGridTest.cs: Bubble tests for Page command. Tests for bad
- Page command bubble event args.
- 2005-07-19 Jackson Harper <[email protected]>
- * DataGridTest.cs: Select can also be bubbled.
- 2005-07-19 Jackson Harper <[email protected]>
- * DataGridTest.cs: Tests for the BubbleEvent.
- 2005-07-19 Jackson Harper <[email protected]>
- * DataGridTest.cs: New tests. Just does properties and events for
- the most part.
- 2005-07-18 Chris Toshok <[email protected]>
- * BaseCompareValidatorTest.cs: note the lack of Date tests, and
- add null tests.
- 2005-07-18 Chris Toshok <[email protected]>
- * BaseCompareValidatorTest.cs: new tests.
- 2005-07-19 Ben Maurer <[email protected]>
- * UnitConverterTest.cs: New tests
- 2005-07-18 Chris Toshok <[email protected]>
- * CompareValidatorTest.cs (CompareValidator_ValueToCompareTest,
- CompareValidator_ControlToCompareTest): new methods.
- * ValidatorTest.cs: add AddTextBox method.
- 2005-07-18 Chris Toshok <[email protected]>
- * 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 <[email protected]>
- * CompareValidatorTest.cs: new tests.
- 2005-07-18 Chris Toshok <[email protected]>
- * RegularExpressionValidatorTest.cs: new test.
- 2005-07-18 Sebastien Pouliot <[email protected]>
- * DataListTest.cs: Fix tests for 1.1 which keeps more stuff into it's
- ViewState.
- 2005-07-15 Peter Dennis Bartok <[email protected]>
- * DropDownListTest.cs: Testcases added
- 2005-07-15 Jackson Harper <[email protected]>
- * CheckBoxListTest.cs: New tests for FindControl.
- 2005-07-15 Jackson Harper <[email protected]>
- * WebControlTest.cs: New test to make sure NamingContainers are
- honoured when rendering client ids.
- 2005-07-15 Jackson Harper <[email protected]>
- * CheckBoxListTest.cs: More tests for the IRepeatInfoUser stuff
- and for rendering.
- 2005-07-15 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * CheckBoxListTest.cs: Rendering tests.
- 2005-07-14 Jackson Harper <[email protected]>
- * 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 <[email protected]>
- * CheckBoxListTest.cs: Add some rendering tests. These aren't
- fully working yet so they are in the NotWorking category.
- 2005-07-14 Jackson Harper <[email protected]>
- * CheckBoxListTest.cs: This has the potential to be a beautiful
- test.
- 2005-07-14 Peter Dennis Bartok <[email protected]>
- * WebColorConverter.cs: Testcases added
- 2005-07-14 Jackson Harper <[email protected]>
- * ListControlTest.cs: New test for the viewstate and item
- selection.
- 2005-07-14 Dick Porter <[email protected]>
- * CheckBoxTest.cs: Added enum checks
- 2005-07-14 Peter Dennis Bartok <[email protected]>
- * TargetConverterTest.cs: Testcases added
- 2005-07-14 Duncan Mak <[email protected]>
- * PagedDataSourceTest.cs: Added testcases.
- (PageCountTest, CountTest, IsLastPageTest): Needs more work.
- 2005-07-13 Peter Dennis Bartok <[email protected]>
- * FontNamesConverterTest.cs: Testcases added
- 2005-07-13 Peter Dennis Bartok <[email protected]>
- * 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 <[email protected]>
- * ListControlTest.cs: New tests for the ListControl.
- 2005-07-13 Jackson Harper <[email protected]>
- * ListBoxTest.cs: Exception is thrown (by ListControl). Dont run
- the BadBorderStyle test as this fails in ListControls.
- 2005-07-13 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * CheckBoxTest.cs: Added tests for CheckBox - currently all
- passing on mono and ms runtimes.
- 2005-07-12 Sebastien Pouliot <[email protected]>
-
- * 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 <[email protected]>
- * WebControlTest.cs: Added test for loading/saving of state. Switched
- to use Sebastiens GetWriter method
- 2005-07-12 Jackson Harper <[email protected]>
- * ListBoxTest.cs: Some simple tests for the ListBox control.
-
- 2005-07-12 Sebastien Pouliot <[email protected]>
-
- * TableTest.cs: Use Ben's trick on StreamWriter.
- * WebControlTest.cs: Added tests for RenderBeginTag.
- 2005-07-12 Sebastien Pouliot <[email protected]>
- * 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 <[email protected]>
- * UnitTest.cs: Update test suite.
- 2005-07-12 Jordi Mas i Hernandez <[email protected]>
- * ButtonTest.cs: add Default constructors tests
- * ImageButtonTest.cs: Adds ImageButtonTest
- 2005-07-11 Peter Dennis Bartok <[email protected]>
- * WebControlTest.cs: Added test.
- 2005-07-11 Sebastien Pouliot <[email protected]>
-
- * 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 <[email protected]>
- * ButtonTest.cs: New unit test for Button
- 2005-07-08 Sebastien Pouliot <[email protected]>
- * ImageTest.cs: New. Unit tests for Image.
- 2005-07-08 Jackson Harper <[email protected]>
- * LiteralTest.cs: new test.
- * MonthCalendarEventArgsTest.cs: new test.
- 2005-07-08 Jackson Harper <[email protected]>
- * AdCreatedEventArgsTest.cs: Added test.
- 2005-07-07 Miguel de Icaza <[email protected]>
- * XmlTest.cs: Added test.
- 2005-07-07 Peter Dennis Bartok <[email protected]>
- * StyleTest.cs: Added test.
- 2005-07-07 Miguel de Icaza <[email protected]>
- * LabelTest.cs: Add test.
- 2005-07-07 Ben Maurer <[email protected]>
- * FontUnitTest.cs: Make it run on msft
- 2005-07-06 Miguel de Icaza <[email protected]>
- * 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 <[email protected]>
- * TestControlIDConverter.cs: Added new test file for ControlIDConverter.
|