| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978 |
- 2008-11-24 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Flush and add test for bug #448005.
- * DataGridViewRowCollectionTest.cs: Add test for bug #448005.
- 2008-11-23 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #447873.
- 2008-11-20 Jonathan Pobst <[email protected]>
- * ToolStripItemTest.cs: Add test to ensure we don't crash when
- ImageIndex refers to a non-existant index.
- 2008-11-18 Jonathan Pobst <[email protected]>
- * DataGridViewColumnCollectionTest.cs: Add test to ensure we re-index
- columns after modifying the collection.
- 2008-11-17 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Add a test showing how RowTemplate works.
- 2008-11-01 Jonathan Pobst <[email protected]>
- * DataGridViewRowCollectionTest.cs: Add some tests for bug #442181.
- 2008-11-11 Andreia Gaita <[email protected]>
- * TestHelper.cs: Inconsistent eol fixes and eol-style
- 2008-11-11 Andreia Gaita <[email protected]>
- * FocusTest.cs, FormTest.cs, FormEventTest.cs: Enable tests that depend on
- synchronous WM_ACTIVATE messages and are now working with the latest
- message fixes
- 2008-11-07 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add some tests from Jonathan Anderson
- for bug #439479.
- 2008-11-06 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add some tests from Jonathan Anderson
- for bug #439443.
- 2008-11-03 Jonathan Pobst <[email protected]>
- * ProgressBarTest.cs: Add new tests provided by Andy Hume. See
- bug #440220.
- 2008-11-03 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #438866.
- 2008-10-31 Andreia Gaita <[email protected]>
- * TestHelper.cs: Remove extraneous debug message
-
- 2008-10-31 Andreia Gaita <[email protected]>
- * TestHelper.cs: Add virtual setup and teardown methods. Any forms left
- hanging around after a test will be disposed here so that they don't
- clutter up the screen while the tests are running.
- * *.cs: All tests now inherit from TestHelper so that the setup and
- teardown routines are always called (barring one or two that already
- inherit from swf classes that needs to be fixed)
- 2008-10-19 Andreia Gaita <[email protected]>
- * tests2.sh: Remove extra echos
- 2008-10-19 Andreia Gaita <[email protected]>
- * FormTest.cs: Fix failing test on .NET/Win
- 2008-10-19 Andreia Gaita <[email protected]>
- * FormTest.cs: Forms that get closed without a handle being created are
- disposed in 2.0. Fixes failing FormTest.FormClose and
- FormTest.FormClose2 on windows.
- 2008-10-18 Andreia Gaita <[email protected]>
- * tests2.sh: Some useful test options, see usage (default behaviour
- remains the same)
- 2008-10-17 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add test for bug #436328.
- 2008-10-15 Ivan N. Zlatev <[email protected]>
- * TimerTest.cs: Enabling test case for bug #325033, because it's
- fixed.
- 2008-10-14 Gert Driesen <[email protected]>
- * ImageListTest.cs: Improved test for ICollection.CopyTo.
- 2008-09-30 Jonathan Pobst <[email protected]>
- * TreeNodeTest.cs: Test for ImageKey/ImageIndex plus flush some tests
- sitting in my local tree.
- 2008-09-28 Carlos Alberto Cortez <[email protected]>
- * DragAndDropTest.cs: Simplify some of the helper code, as well as
- adding a new test for dnd operations without mouse movement.
- 2008-09-24 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test for bug #386450.
- 2008-09-22 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: New test for public ctor of
- ListViewSubItemCollection.
- 2008-09-19 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New test for data source looking for a data source
- property with a *specific* value type, more specific than just the
- property type.
- 2008-09-19 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs: New test for testing that FormattingEnabled,
- FormatString and FormatInfo property changes *actually* cause a call
- to RefreshItems.
- 2008-09-18 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New test for empty string passed as property.
- 2008-09-16 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New .ctor asertion for DataSourceNullValue default
- value.
- 2008-09-15 Jonathan Pobst <[email protected]>
- * CheckedListBoxTest.cs, ListBoxTest.cs: Add some tests from Andy
- Hume for bug #426166.
- 2008-09-11 Jonathan Pobst <[email protected]>
- * ListViewCollectionsTest.cs: Add test for bug #425342.
- 2008-09-08 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add test for bug #424270.
- 2008-09-04 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New test for nested properties using a DataSet.
- 2008-09-04 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New tests for multiple nested properties in the
- data source, by Andy Hume.
- 2008-08-26 Jonathan Pobst <[email protected]>
- * ErrorProviderTest.cs: Add test for bug #420305.
- 2008-08-24 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs: Add a container for a mock item, to test
- multiple nested properties.
- * BindingContextTest.cs: New test for the overload of the indexer
- taking a data source with a data member (including nested properties,
- or multiple objects, as msdnstates).
- 2008-08-24 Gert Driesen <[email protected]>
- * ListBoxTest.cs: Added tests for SetItemsCore. Added and improved tests
- for ObjectCollection. Added tests for IntegerCollection.
- 2008-08-23 Gert Driesen <[email protected]>
- * ControlTest.cs: Added .ctor tests.
- 2008-08-19 Jonathan Pobst <[email protected]>
- * LinkLabelTest.cs: Add test for bug #410709.
- 2008-08-02 Gert Driesen <[email protected]>
- * FormEventTest.cs: Modified several tests to no longer require manual
- intervention. Added/improved tests for Form events.
- 2008-07-31 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelperTest.cs: New test for GetList receiving an IEnumerable
- object which return instances of ICustomTypeDescriptor instances,
- instead of actual items.
- 2008-07-30 Ivan N. Zlatev <[email protected]>
- * TableLayoutTest.cs: Add tests for bug #412582
- 2008-07-29 Jonathan Pobst <[email protected]>
- * ListBox.cs: Make test not font dependent.
- 2008-07-29 Jonathan Pobst <[email protected]>
- * ListBox.cs: Add test for bug #412728.
- 2008-07-25 Ivan N. Zlatev <[email protected]>
- * TableLayoutTest.cs: Add test for bug #412161
- 2008-07-23 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Marked SerializeExact_Mono as NotWorking to fix
- buildbot.
- 2008-07-22 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Enabled (de)serialization tests.
- * PictureBoxTest.cs: Enabled tests for bug #378308.
- 2008-07-20 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Fixed tests.
- 2008-07-20 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Added ListViewSubItem (de)serialization tests,
- added/improved ctor tests and add property tests.
- * PictureBoxTest.cs: Added tests for Load(Async) argument checks.
- 2008-07-15 Jonathan Pobst <[email protected]>
- * ImageListTest.cs: Add test for bug #409169.
- 2008-07-14 Jonathan Pobst <[email protected]>
- * TreeViewTest.cs: Add test for bug #409029.
- 2008-07-14 Jonathan Pobst <[email protected]>
- * TreeNodeCollectionTest.cs: Add test for bug #408999.
- 2008-07-12 Gert Driesen <[email protected]>
- * PictureBoxTest.cs: Split up ImageLocation test in sync and async
- tests.
- 2008-07-11 Gert Driesen <[email protected]>
- * PictureBoxTest.cs: Added (notworking) test for ImageLocation.
- 2008-07-10 George Giolfan <[email protected]>
- * FormTest.cs: Enabled the MinimizedWindowSize test and made it "NotWorking".
- 2008-07-09 Jonathan Pobst <[email protected]>
- * StatusBarTest.cs: Tests from Andy Hume for StatusBarPanelCollection.
- 2008-07-08 George Giolfan <[email protected]>
- * FormTest.cs: Disabled the MinimizedWindowSize test.
- 2008-07-08 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Test showing PreferredHeight is independent of
- ItemHeight.
- 2008-07-08 George Giolfan <[email protected]>
- * FormTest.cs: Added the MinimizedWindowSize test.
- 2008-07-07 Ivan N. Zlatev <[email protected]>
- * ControlTest.cs: Add tests for the Dispose behavior.
- 2008-07-07 Ivan N. Zlatev <[email protected]>
- * TableLayoutTest.cs: Add test for bug #402651
- 2008-07-04 Gert Driesen <[email protected]>
- * TreeViewTest.cs: Add test for bug #406449.
- 2008-07-03 Jonathan Pobst <[email protected]>
- * ScrollBarTest.cs: Add test for bug #403122.
- 2008-06-20 Ivan N. Zlatev <[email protected]>
- * PaddingConverterTest.cs: Add tests for bugs #396076 and #396078
- Based on patch by Andy Hume <[email protected]>
- 2008-06-14 Everaldo Canuto <[email protected]>
- * DataGridTextBoxColumnTest.cs: Fixes the size of text box, according to
- .Net results it must be (97,97).
- 2008-06-13 Jonathan Pobst <[email protected]>
- * DefaultLayoutTests.cs: Change test for bug #399316 to be less exact.
- 2008-06-13 Jonathan Pobst <[email protected]>
- * DefaultLayoutTests.cs: Add test for bug #399316.
- 2008-06-12 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Add test for deleting rows
- from the dataset and the table.
- 2008-06-12 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Add test for bug #399601.
- 2008-06-09 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test for bug #397943.
- 2008-06-04 George Giolfan <[email protected]>
- * FormTest.cs: Added SettingIconToNull.
- 2008-06-03 George Giolfan <[email protected]>
- * DataGridViewTest.cs: Added EnableHeadersVisualStylesDefaultValue.
- 2008-06-03 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs Add another test for bug #396433.
- 2008-06-02 Jonathan Pobst <[email protected]>
- * TimerTest.cs: Disable test that fails a bunch on buildbots.
- 2008-06-02 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs Add test for bug #396433.
- 2008-06-02 Andreia Gaita <[email protected]>
- * TextBoxTest.cs: Fix endif
- 2008-06-02 Andy Hume <[email protected]>
- * TextBoxTest.cs: Test for TextBoxAutoCompleteSourceConverter,
- bug 396124.
- 2008-06-02 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs Add test for bug #396141.
- 2008-05-21 Jonathan Pobst <[email protected]>
- * TimerTest.cs: Increase sleep time to see if it will make
- StartTest fail less.
- 2008-05-21 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Add test for bug #345483.
- 2008-05-21 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Add test for bug #337470.
- 2008-05-20 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Add test for bug #325239.
- 2008-05-20 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Add test for AutoGenerateColumns.
- 2008-05-20 Jonathan Pobst <[email protected]>
- * DataGridViewColumnCollectionTest.cs: Change Add() test to not
- create 2 column collections.
- 2008-05-20 Jonathan Pobst <[email protected]>
- * DataGridViewDataBindingTest.cs: Added.
- 2008-05-20 Andreia Gaita <[email protected]>
- * WebBrowserTest.cs: Added WebBrowser unit tests (not included in the
- build at the moment)
- * tests2.sh: Fix case on dll name
- 2008-05-13 Atsushi Enomoto <[email protected]>
- * TimerTest.cs : added test for bug #325033.
- 2008-05-12 Jonathan Pobst <[email protected]>
- * ApplicationTest.cs: Disable test that I am tired of seeing
- false positives on the buildbot.
- 2008-05-09 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Activate a pair of previously not working 2.0 tests.
- 2008-05-07 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelperTest.cs: Remove the NotWorking category from
- GetListItemPropertiesTest, as well as add a pair of new assertions.
- 2008-05-06 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New tests for ApplySort and RemoveSort methods.
- 2008-05-06 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: Activate a pair of tests.
- 2008-05-06 Carlos Alberto Cortez <[email protected]>
- * BindingSOurceTest.cs: New assertion for
- ISupportInitializeNotification test.
- 2008-05-06 Carlos Alberto Cortez <[email protected]>
- * BindingSource.cs: New tests for ISupportInitializeNotification
- property.
- 2008-05-04 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New tests for Sort property.
- 2008-05-04 Everaldo Canuto <[email protected]>
- * LinkLabelTest.cs: Enable tests related to bug #346156.
- 2008-05-04 Everaldo Canuto <[email protected]>
- * LinkLabelTest.cs: Enable tests related to bug #346154.
- 2008-05-03 Everaldo Canuto <[email protected]>
- * LinkLabelTest.cs: Put LinkTest and LinkCollectionTest classes outside of
- LinkLabelTest class, subclasses looks to be not work with nunit.
- 2008-05-03 Everaldo Canuto <[email protected]>
- * LinkLabelTest.cs: Remove NotWorking attribute from TestLinkArea, it is
- fixed in r102445.
- 2008-05-01 Jonathan Pobst <[email protected]>
- * DataGridViewRowCollectionTest.cs: Disable test requiring shared rows.
- * DataGridViewRowTest.cs, DataGridViewCellTest.cs: Disable
- tests requiring DGVComboBox.
- 2008-05-01 Jonathan Pobst <[email protected]>
- * InputLanguageTest.cs: Add test for bug #385506.
- 2008-04-29 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New Filter/RemoveFilter tests.
- 2008-04-29 Carlos Alberto Cortez <[email protected]>
- * DragAndDropTest.cs: New test.
- 2008-04-28 Jonathan Pobst <[email protected]>
-
- * ScrollBarTest.cs: Add test for bug #384182.
- 2008-04-24 Jonathan Pobst <[email protected]>
- * InputLanguageTest.cs: Add test for bug #373871.
- 2008-04-23 Ivan N. Zlatev <[email protected]>
- * ControlTest.cs: Remove the focusing tests from the validation
- test. They fail on X11 anyway due to a long standing X11 visibility
- asynchronicity problem in MWF. The Vaildation test do pass.
- 2008-04-23 Jonathan Pobst <[email protected]>
- * DataGridViewRowHeaderTest.cs: Comment font dependent tests.
- 2008-04-23 Carlos Alberto Cortez <[email protected]>
- * DragAndDropTest.cs: New dnd tests.
- 2008-04-22 Jonathan Pobst <[email protected]>
- * DataGridViewRowHeaderTest.cs: Add some tests for new
- functionality.
- 2008-04-21 Jonathan Pobst <[email protected]>
- * TreeView.cs: Add tests for bug #382028.
- 2008-04-21 Gert Driesen <[email protected]>
- * ControlTest.cs: Enabled test for bug #330501.
- 2008-04-14 Carlos Alberto Cortez <[email protected]>
- * CurrencyManagerTest.cs: New 2.0 IsBinding test.
- 2008-04-12 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Enable some more tests.
- 2008-04-11 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Enable IsBindingTest.
- 2008-04-09 Jonathan Pobst <[email protected]>
- * DataGridViewImageCellTest.cs: Add.
- 2008-04-08 Jonathan Pobst <[email protected]>
- * DataGridViewCheckBoxCellTest.cs: Add.
- 2008-04-06 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: Enable some old not working tests.
- 2008-04-06 Carlos Alberto Cortez <[email protected]>
- * DataBindingTests.cs: Enable some CurrencyManager tests.
- 2008-04-05 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: Add new tests for GetRelatedCurrencyManager
- method.
- 2008-04-03 Jonathan Pobst <[email protected]>
- * DataGridViewLinkCellTest.cs: Add.
- 2008-04-03 Jonathan Pobst <[email protected]>
- * TimerTest.cs: Disable a finicky test that occasionally fails.
- 2008-04-02 Carlos Alberto Cortez <[email protected]>
- * BindingContextTest.cs: New test for ICurrencyManagerProvider
- instances passed as data sources.
- 2008-04-02 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New test for type instances as data sources.
- 2008-04-02 Jonathan Pobst <[email protected]>
- * DataGridViewButtonCellTest.cs: Add.
- 2008-04-01 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New test for ICancelAddNew support.
- * CurrencyManagerTest.cs: Likewise.
- 2008-04-01 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Commit the rest of my test so the tests
- compile.
- 2008-04-01 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Add tests for IsInputChar and IsInputKey.
- 2008-03-30 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: More event tests and also a new ones for
- RemoveCurrent and IsBindingSuspended properties.
- 2008-03-30 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: Add tests for ListChanged event, and also new
- assertions for Position property. Mark ListChanged_DataSourceSet as
- not working, while I try to figure out why setting the DataSource
- fires 2 events instead of only one.
- 2008-03-28 Carlos Alberto Cortez <[email protected]>
- * BindingSource.cs: Add test for just added members in BindingSource.
- 2008-03-28 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add test for bug #374654.
- 2008-03-28 Jonathan Pobst <[email protected]>
- * DataGridViewTextBoxCellTest.cs: Mark 2 of the new tests
- as font dependent.
- 2008-03-28 Jonathan Pobst <[email protected]>
- * DataGridViewTextBoxCellTest.cs: Bunch of new tests.
- 2008-03-27 Carlos Alberto Cortez <[email protected]>
- * DataBindingTests.cs: Mark as NotWorking some CurrencyManager tests by
- now.
- 2008-03-26 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Add test for bug #343965.
- 2008-03-26 Jonathan Pobst <[email protected]>
- * TreeViewTest.cs: Add test for bug #373603.
- 2008-03-25 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelper.cs: New test for GetListName method.
- 2008-03-25 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New tests for Add/AddNew/Clear methods, as
- well as new assertions for other tests.
- 2008-03-25 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Enable gert's test for bug #325979.
- 2008-03-24 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: Re-activate some tests and also add a new
- ones.
- 2008-03-24 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Add test for bug #331649.
- 2008-03-24 Jonathan Pobst <[email protected]>
- * DataGridViewTest.cs: Add test for bug #325588.
- 2008-03-23 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New assertion for DataMember_ListRelationship
- test method.
- 2008-03-23 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelperTest.cs: New assertion for GetListTest () test
- method.
- 2008-03-21 Jonathan Pobst <[email protected]>
- * MenuItemTest.cs: Add test for #372845.
- 2008-03-21 Andreia Gaita <[email protected]>
- * FocusTest.cs: New test for #372616. Checks if a control inside a
- UserControl is selected when UserControl gets focus.
- 2008-03-20 Carlos Alberto Cortez <[email protected]>
- * BindingSourceTest.cs: New assertion case for DataSource, passing an
- instance of IListSource.
- * ListBindingHelperTest.cs: Make ListSource class internal.
- 2008-03-20 Jonathan Pobst <[email protected]>
- * DataGridViewCellTest.cs: Tests for newly implemented stuffs.
- 2008-03-20 Jonathan Pobst <[email protected]>
- * DataGridViewCellTest.cs: Don't verify exception message,
- throwing the exception is enough.
- 2008-03-20 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelperTest.cs: Update GetListTest with new assertions.
- Also add GetListItemProperties tests - not working by now, but should
- guide us to a correct implementation.
- 2008-03-19 Jonathan Pobst <[email protected]>
- * DataGridViewCellTest.cs: Ignore Size test since a
- cell's height is based off its height.
- 2008-03-19 Jonathan Pobst <[email protected]>
- * DataGridViewCellTest.cs: Add new suite of tests.
- 2008-03-15 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelperTest.cs: New GetListItemType test.
- 2008-03-13 Carlos Alberto Cortez <[email protected]>
- * ListBindingHelperTest.cs: New file and a new test.
- 2008-03-07 Carlos Alberto Cortez <[email protected]>
- * ControlBindingsCollectionTest.cs: New test for 2.0
- Default DataSourceUpdateMode property.
- 2008-03-06 Carlos Alberto Cortez <[email protected]>
- * ListBoxTest.cs: New tests for 2.0 selection methods
- in the different selection modes. Also, in GetSelectedTest (),
- be sure that we set the right selection mode (test cleaness).
- 2008-03-05 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for bug #367249.
- 2008-02-27 Jonathan Pobst <[email protected]>
- * UserControlTest.cs: Add test for PreferredSize.
- 2008-02-26 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Added a new test for 2.0 BindableComponent property
- - again as not working ;-(. Also add a child class of ToolStripItem to
- test this property.
- * ControlBindingsCollectionTest.cs: Likewise.
- 2008-02-26 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Added a new test for 2.0 NullValue property - mark
- as NotWorking by now ;-(. Also add an assertion for this new property
- in CtorTest.
- 2008-02-23 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Update ctor test with 2.0 properties, and add new
- tests for 2.0 FormattingEnabled and FormatString properties.
- 2008-02-21 Jonathan Pobst <[email protected]>
- * ToolStripContainerTests.cs: Add test for bug #363555.
- 2008-02-20 Jonathan Pobst <[email protected]>
- * SplitContainerTests.cs: Add test for bug #363303.
- 2008-02-19 Jonathan Pobst <[email protected]>
- * SelectionRangeTest.cs: Add NET_2_0 so that 1.1 profile will build.
- 2008-02-19 Jonathan Pobst <[email protected]>
- * SelectionRangeTest.cs: Add tests from Andy Hume.
- 2008-02-19 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Use PreferredHeight in MethodScaleControl.
- Fixes buildbot failure.
- 2008-02-19 Jonathan Pobst <[email protected]>
- * FlowPanelTests.cs: Add test for bug #361448.
- 2008-02-19 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add test for bug #360862.
- 2008-02-18 Andreia Gaita <[email protected]>
- * ControlTest.cs: New test to check if, when controls don't have
- a parent and are then reparented, their location is not changed.
- 2008-02-11 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New test for 2.0 DataSourceNullValue property -
- which is not working by now (but should guide us to correctly
- implement some missing features in data binding).
- 2008-02-10 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: New test for changes in data source property (with
- a 'PropertyChange' event).
- 2008-02-08 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Add new cases for DataSourceUpdateMode test,
- and also add a 2.0 WriteValueTest test.
- 2008-02-08 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: MethodScaleControl needs to take Font into
- account, which PreferredHeight does. Fixes a failing test.
- 2008_02-08 Carlos Alberto Cortez <[email protected]>
- * ListControl.cs: Add setter and events for MockItem members -
- we need them to test data binding.
- * BindingTest.cs: Add tests for 2.0 members (ControlUpdateMode,
- DataSourceUpdateMode, ReadValue), and for IsBinding property.
- Mark as NotWorking IsBindingTest and DataSourceUpdateMode as they are
- failing by now.
- 2008-02-08 Jonathan Pobst <[email protected]>
- * FormTest.cs: Commit tests from James Purcell for his new
- AutoScale implementation. [Bug #359098]
- 2008-02-07 Jonathan Pobst <[email protected]>
- * MdiFormTest.cs: Add test for bug #336296.
- 2008-02-07 Jonathan Pobst <[email protected]>
- * MdiFormTest.cs: Add test for bug #325473.
- 2008-02-06 Jonathan Pobst <[email protected]>
- * TimerTest.cs: Several asserts in one test had the same name,
- so I can't tell which assert is failing on the buildbot. Fixed.
- 2008-02-04 Carlos Alberto Cortez <[email protected]>
- * BindingsCollectionTest.cs: New file.
- 2008-02-04 Carlos Alberto Cortez <[email protected]>
- * CurrencyManagerTest.cs: New tests for 2.0 ListChanged event.
- * ListControlTest.cs: Add a default ctor for MockItem.
- 2008-02-03 Luke Page <[email protected]>
- * RichTextBoxTest.cs: Restored property test with failing tests
- commented so that it tests the fix to bug 358379 that AutoSize
- defaults to false.
- 2008-02-03 Luke Page <[email protected]>
- * TextBoxTest.cs: Added test from James Purcell for bug #358229 to
- test FixedHeight control style when multiline changed.
- 2008-02-01 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs: Disable test that is default font dependent.
- 2008-02-01 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs: Commit some tests for bug #357152 from James
- Purcell.
- 2008-01-30 Carlos Alberto Cortez <[email protected]>
- * BindingManagerBaseTest.cs: New test for 2.0 IsBindingSuspended test.
- 2008-01-28 Carlos Alberto Cortez <[email protected]>
- * ComboBoxTest.cs: New SelectedTextWithBinding test - for #333750.
- 2008-01-26 Gert Driesen <[email protected]>
- * ImageListStreamerTest.cs: Added binary (de)serialization tests.
- 2008-01-26 Carlos Alberto Cortez <[email protected]>
- * BindingTest.cs: Add DataSourceNullTest test - for #324286.
- 2008-01-26 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs: Add SelectedValue2 test - for #324286.
- 2008-01-24 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add tests for bug #354672.
- 2008-01-23 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug 355703.
- 2008-01-23 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Set ClientSize to a known size to
- make Bug355408 () WM independent.
- 2008-01-23 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for bug #355408.
- 2008-01-22 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for bug #354676.
- 2008-01-22 Jonathan Pobst <[email protected]>
- * ScrollabeControlTest.cs: Add test for bug #354676.
- 2008-01-22 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test for bug #355074.
- 2008-01-18 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test from James Purcell for bug #354669.
- 2008-01-18 Jonathan Pobst <[email protected]>
- * MdiFormTest.cs: Add test for bug #354286.
- 2008-01-15 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #353827.
- 2008-01-14 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add tests for RestoreBounds.
- 2008-01-09 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Activating the RemoveFocusedItem test,
- as well as commenting the assertion that is failling _only_ in the
- test scenario, not in real world (see the explanation in the test).
- 2008-01-06 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs: New SelectedValue property test.
- 2008-01-05 Jonathan Pobst <[email protected]>
- * RichTextBoxTest.cs: Add test for bug #351886.
- 2007-12-30 Carlos Alberto Cortez <[email protected]>
- * CurrencyManagerTest.cs: In AddNew test, also check that
- CurrencyManager is firing the 2.0 ListChanged event, as well as
- passing the right ListChangedEventArgs.
- 2007-12-19 Carlos Alberto Cortez <[email protected]>
- * ListBoxTest.cs: New assertions in FindStringTest and
- FindStringExactTest methods, needed to make sure we are doing the right
- thing in those methods.
- 2007-12-18 Everaldo Canuto <[email protected]>
- * MenuItemTest.cs: Add a test case for menuitem properties when created by
- CloneMenu. Thanks Luke Page for test case.
- 2007-12-15 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Added new Constructor_Group test, that I
- forgot to add after fixing a 2.0 bug.
- 2007-12-14 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Contructor_Serializable test only applies for
- the 2.0 profile.
- 2007-12-13 Carlos Alberto Cortez <[email protected]>
- * ListBoxTest.cs: Added test for the case when the selected item
- is removed.
- 2007-12-13 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add tests for bug #346246.
- 2007-12-11 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add a test for bug #347282.
- 2007-12-10 Jonathan Pobst <[email protected]>
- * ToolStripManagerTest.cs: Add a test for bug #347669.
- 2007-12-07 Jonathan Pobst <[email protected]>
- * DataBindingTests.cs: Silence some debug spew.
- 2007-12-06 Andreia Gaita <[email protected]>
- * FormTest.cs: Run ChildFocused test for win only, relies
- on synch messages on X
- 2007-12-06 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Added new 2.0 Position test.
- 2007-12-06 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Added new serialization test.
- 2007-12-05 Gert Driesen <[email protected]>
- * LinkLabelTest.cs: Added tests for bug #344012, bug #346154 and
- bug #346156.
- 2007-11-23 Gert Driesen <[email protected]>
- * MenuStripTest.cs: Added test for bug #342358.
- 2007-11-19 Everaldo Canuto <[email protected]>
- * NotifyIconTest.cs: Add Balloon test, bug #342141.
- 2007-11-16 Gert Driesen <[email protected]>
- * ComboBoxTest.cs: Enabled test for bug #331144.
- 2007-11-16 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: New exception test for 2.0 FindNearestItem method.
- 2007-11-13 Jonathan Pobst <[email protected]>
- * DateTimePickerTest.cs: Remove a compare on seconds in a format
- string so that we get a Assert.AreEqual (DateTime.Now, DateTime.Now)
- failure 60x less often on the buildbots. (I've never actually seen
- the minutes be different, but the possibility is still there.)
- 2007-11-07 Gert Driesen <[email protected]>
- * FormTest.cs: Added reference to bug #339641. Remove CWLs.
- 2007-11-04 Gert Driesen <[email protected]>
- * PropertyGridTest.cs: Enabled and improved PropertySort tests.
- 2007-11-03 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Mark RemoveFocusedItem as NotWorking.
- * PropertyGridTest.cs: The same for PropertySort_Valid and
- PropertySort_Invalid.
- 2007-11-03 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: New tests for 2.0 IndentCount property.
- 2007-11-03 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Enabled test for bug #331643 and #330415.
- * PropertyGridTest.cs: Added tests for PropertySort.
- 2007-10-30 Jonathan Pobst <[email protected]>
- * FormTest.cs: Test from George for bug #325242.
- 2007-10-30 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #325436.
- 2007-10-30 Andreia Gaita <[email protected]>
- * ContainerControlTest.cs: Add test for #329718
- 2007-10-29 Jonathan Pobst <[email protected]>
- * DateTimePickerTest.cs: Tests for setting the Value outside the
- range of MinDate and MaxDate.
- 2007-10-16 Gert Driesen <[email protected]>
- * ButtonBaseTest.cs: Added test for IsDefault.
- * FormTest.cs: Added test for AcceptButton. Commented out CWLs.
- 2007-10-13 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: New tests for focused state. Also,
- comment a new ones, as they don't work by now, but should work
- as soon as we fix an issue there.
- 2007-10-13 Gert Driesen <[email protected]>
- * RichTextBoxTest.cs: Added tests for negative SelectionLength and
- SelectionStart.
- * TextBoxTest.cs: Added tests for negative SelectionLength and
- SelectionStart. Avoid using anonymous methods to allow tests to build
- using csc 1.x; use EventLogger to capture events. Removed CWL.
- 2007-10-11 Carlos Alberto Cortez <[email protected]>
- * DragEventArgsTest.cs: New file.
- 2007-10-07 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Added test for bug #330415 and #331643.
- Use Assert.IsFalse and Assert.IsTrue instead of Assert.AreEqual.
- 2007-10-05 Carlos Alberto Cortez <[email protected]>
- * TreeNodeTest.cs: Added a test to be sure leaf nodes
- keep their expanded/collapsed state when we get calls to
- Expand/Collapse. Also add a forgotten test for EndEdit method.
- 2007-10-05 Gert Driesen <[email protected]>
- * ComboBoxTest.cs: Added test for bug #331144.
- 2007-10-04 Carlos Alberto Cortez <[email protected]>
- * TreeViewEventsTest.cs: New file. Tests for TreeView events.
- 2007-10-04 Gert Driesen <[email protected]>
- * ControlTest.cs: Added test for bug #330501.
- 2007-10-02 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: Remove NotWorking from FocusSelectsAllTest.
- 2007-09-29 Jonathan Pobst <[email protected]>
- * RadioButtonTest.cs: Fix test to not fail on monobuild.
- 2007-09-27 Jonathan Pobst <[email protected]>
- * RadioButtonTest.cs: Added test for bug #328672.
- 2007-09-23 Gert Driesen <[email protected]>
- * DataGridViewTest.cs: Added test for bug #325979. Code formatting.
- 2007-09-23 Gert Driesen <[email protected]>
- * DataGridViewCellTest.cs: Code formatting. Removed useless SetUp and
- TearDown methods. Removed useless test.
- * DataGridViewCellCollectionTest.cs: Added indexer tests.
- 2007-09-21 Jonathan Pobst <[email protected]>
- * TreeViewTest.cs: Add test for bug #326858.
- 2007-09-20 Jonathan Pobst <[email protected]>
- * DateTimePickerTest.cs: Make DateTimeMinDate 2.0 only.
- 2007-09-19 Jonathan Pobst <[email protected]>
- * DateTimePickerTest.cs: Add test for bug #326609.
- 2007-09-14 Jonathan Pobst <[email protected]>
- * ToolStripTest.cs: Asserts showing Selectable control style depends
- on TabStop.
- 2007-09-14 Jonathan Pobst <[email protected]>
- * SplitContainerTests.cs: Enable some ignored tests mainly dealing
- with FixedPanel.
- 2007-09-12 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Test for Docked AutoSize controls.
- 2007-09-12 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: Change Modified test to use a fresh TextBox instead
- of relying on test running order. Fix font dependent-ness of Bug82749
- to be less than 30.
- 2007-09-12 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: Change an IsTrue to AreEqual in Bug82749 so that I
- can see what the failing value is on monobuild since I cannot repro locally.
- 2007-09-11 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for bug #82805.
- 2007-09-11 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Mark Bug82762 as WM dependent.
- 2007-09-11 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: Add test for bug #82749.
- 2007-09-11 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test for bug #82748.
- 2007-09-11 Jonathan Pobst <[email protected]>
- * ScrollBarTest.cs: Add test demonstrating behavior when Maximum
- is set lower than Value.
- 2007-09-11 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for bug #82762.
- 2007-09-06 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Make test for bug #82605 not depend on font measurements.
- 2007-09-06 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for bug #82605.
- 2007-08-31 Jonathan Pobst <[email protected]>
- * ToolStripItemTest.cs: Added test to show that Enabled can
- depend on Parent/Owner's Enabled.
- 2007-08-29 Jonathan Pobst <[email protected]>
- * ContainerControlTest.cs: Added test for ValidateChildren.
- 2007-08-25 Gert Driesen <[email protected]>
- * FolderBrowserDialogTest.cs: Added tests for Description and
- ShowNewFolderButton.
- 2007-08-24 Gert Driesen <[email protected]>
- * FolderBrowserDialogTest.cs: Added tests for SelectedPath and
- RootFolder.
- * SaveFileDialogTest.cs: Renamed class and improved AddExtension test.
- 2007-08-24 Carlos Alberto Cortez <[email protected]>
- * ListViewGroupTest.cs: New assertions for a pair of tests.
- 2007-08-23 George Giolfan <[email protected]>
- * FlowPanelTests.cs: Add PreferredSize test.
- 2007-08-23 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs, ListViewTest.cs, TreeViewTest.cs: Add tests that show
- IsInputChar should always return true for these controls.
- 2007-08-22 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add test for AutoSize behavior.
- 2007-08-21 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewCellTest.cs: Added GetClipboardContentTest,
- GetClipboardContentTestException.
- * DataGridViewClipboardHeaderTest.cs, DataGridViewClipboardTest.cs: Added.
- * DataGridViewColumnHeaderTest.cs: Added GetClipboardContentTestException
- * DataGridViewRowHeaderTest.cs: Added GetClipboardContentTestException/2.
- * DataGridViewTest.cs: Added GetClipboardContentsDisabled,
- GetClipboardContents, GetClipboardContents_HeadersAlways,
- GetClipboardContents_HeadersNever and GenerateClipboardTest with several
- helper functions.
- 2007-08-21 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewColumnCollectionTest.cs, DataGridViewComboBoxCellTest.cs,
- DataGridViewRowCollectionTest.cs, DataGridViewTextBoxColumnTest.cs,
- DataGridViewBandTest.cs: Fixed line endings.
- * DataGridViewCommon.cs: Fixed line endings, added
- CreateAndFillForClipboard.
- 2007-08-21 Rolf Bjarne Kvinge <[email protected]>
- * DataObjectTest.cs: Added TestConvertible.
- 2007-08-20 Carlos Alberto Cortez <[email protected]>
- * ListViewGroupCollectionTest.cs: New tests for the indexers.
- 2007-08-20 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewTest.cs: Added EditingRowAfterAddingColumns.
- 2007-08-20 Rolf Bjarne Kvinge <[email protected]>
- * StatusBarPanelTest.cs: Added IconWidth.
- 2007-08-19 Everaldo Canuto <[email protected]>
- * FormTest.cs: Add test for opacity.
- 2007-08-19 Everaldo Canuto <[email protected]>
- * DataGridTableStyle.cs: An assert added to test ResetHeaderFont.
- 2007-08-18 Rolf Bjarne Kvinge <[email protected]>
- * FormTest.cs: Added test for bug 82358.
- 2007-08-17 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #82470.
- 2007-08-15 Carlos Alberto Cortez <[email protected]>
- * ListViewCollectionsTest.cs: New tests for ListViewItemCollection
- when used with ListViewGroup.
- * ListViewGroupCollectionTest.cs: Likewise.
- * ListViewItemTest.cs: Likewise.
- 2007-08-14 Jonathan Pobst <[email protected]>
- * ToolBarButtonTest.cs: Add test showing how ImageIndex and ImageKey interact.
- 2007-08-10 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: Fix old SelectionLength assert to work on MS and match
- corrected Mono behavior.
- 2007-08-10 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewTest.cs: Added EditingRow.
- 2007-08-10 Jonathan Pobst <[email protected]>
- * ToolTip.cs: Add test for bug #82399.
- 2007-08-10 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: New test for 82371 to illustrate SelectionLength value when
- no text is selected.
- 2007-08-09 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs: Mark test MethodScaleControl as not working.
- 2007-08-09 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewCommon.cs: Added CreateAndFillBig.
- * DataGridViewTest.cs: Added SelectedRowsTest and SelectedColumnsTest.
- 2007-08-09 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewCommon.cs: Added a comment.
- * DataGridViewCellTest.cs: Added ReadOnlyTest.
- 2007-08-09 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewColumnCollectionTest.cs: Added AddFullColumnSelect.
- 2007-08-08 Rolf Bjarne Kvinge <[email protected]>
- * ContainerControlTest.cs, ControlTest.cs, DefaultLayoutTest.cs,
- FormTest.cs, PanelTest.cs, TableLayoutTest.cs, UserControlTest.cs:
- Dispose of forms when they're no longer used.
- * ListViewCollectionsTest.cs: Dispose of listviews when they're no longer
- used.
- 2007-08-07 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs: Added test for ScaleControl.
- 2007-08-07 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewTest.cs: Added test for #82326 and added a few forgotten
- [Test] attributes.
- 2007-08-01 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewCellTest.cs: Added EditTypeTest and TestDefaultValues.
- 2007-08-01 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewTest.cs: Added AutoResizeColumnTest.
- 2007-07-31 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewRowCollectionTest.cs: Added.
- 2007-07-27 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewRowTest.cs: Comment out more asserts that probably are
- DPI dependent.
- 2007-07-26 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewRowTest.cs: Comment out a few asserts that probably are
- DPI dependent.
- 2007-07-26 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewRowTest.cs: Added AddRow_Changes, InitialValues.
- * EventLogger.cs: Create a EventLog class, can print to the console
- events as they are raised.
- * DataGridViewCellTest.cs: Added AddRow_Changes.
- * TestHelper.cs: Add DumpObject, can be used to dump an object's values
- in a Assert.X (values) form.
- * FormTest.cs: Added ChildFocused test (NotWorking).
- 2007-07-25 Jonathan Pobst <[email protected]>
- * LabelTest.cs: Test showing that changing the width or height when
- autosize = true has no effect.
- 2007-07-24 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewColumnCollectionTest.cs,
- DataGridViewTextBoxColumnTest.cs, DataGridViewBandTest.cs,
- DataGridViewCommon.cs, DataGridViewComboBoxCellTest.cs: Added.
- * DataGridViewColumnTest.cs: Added InitialValues.
- * DataGridViewTest.cs: More tests.
- 2007-07-23 Rolf Bjarne Kvinge <[email protected]>
- * DataGridViewTest.cs: More tests.
- * CurrencyManagerTest.cs: Remove CWL's.
- 2007-07-23 Rolf Bjarne Kvinge <[email protected]>
- * ScrollableControlTest.cs: Added AutoScrollPositiontest
- 2007-07-20 Rolf Bjarne Kvinge <[email protected]>
- * FormHandleTest.cs: Make a couple of classes public, so that other
- tests can use them.
- * FormTest.cs: Added tests for #81969.
- 2007-07-20 Rolf Bjarne Kvinge <[email protected]>
- * ComboBoxTests.cs, ComboBoxTest.cs: Unified ComboBoxTest.cs and
- ComboBoxTests.cs, deleted ComboBoxTests.cs
- 2007-07-18 Jonathan Pobst <[email protected]>
- * ToolStripTest.cs: One of my notworking tests slipped out.
- 2007-07-18 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs, MenuStripTest.cs, ToolStripComboBoxTest.cs,
- ToolStripContentPanelTest.cs, ToolStripControlHostTest.cs,
- ToolStripDropDownTest.cs, ToolStripProgressBarTest.cs,
- ToolStripTest.cs: Sync up some local test additions.
- 2007-07-18 Jonathan Pobst <[email protected]>
- * ListControl.cs: Fix test that is failing on i586.
- 2007-07-17 Jonathan Pobst <[email protected]>
- * ContainerControlTest.cs: Add test for 2.0 AutoScaling. It's
- marked NotWorking because it depends on fonts and DPI, but it
- can still be used to compare to .NET.
- 2007-07-16 Gert Driesen <[email protected]>
- * ComboBoxTest.cs: Added test for bug #82069.
- * ListControlTest.cs: Added tests for bug #81771.
- 2007-07-12 Jonathan Pobst <[email protected]>
- * ButtonTest.cs: Add test showing a NSE if Flat BorderColor is
- transparent.
- 2007-07-09 Jonathan Pobst <[email protected]>
- * MessageTest.cs: Add tests for op_Equality and op_Inequality.
- 2007-07-09 Jonathan Pobst <[email protected]>
- * LinkAreaTest.cs: Add tests for op_Equality and op_Inequality.
- 2007-07-09 Jonathan Pobst <[email protected]>
- * ListBoxTest.cs: Add test for bug #80466.
- 2007-07-08 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Simplify and enable Gert's test for bug
- #82040. Add a test for bug #82041.
- 2007-07-08 Gert Driesen <[email protected]>
- * TableLayoutTest.cs: Added test for bug #82040.
- 2007-07-07 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for bug #81936.
- 2007-07-06 Jonathan Pobst <[email protected]>
- * ListControl.cs: Add test for Formatting behavior.
- 2007-07-06 Jonathan Pobst <[email protected]>
- * LabelTest.cs: Add test for Image[List|Index|Key].
- 2007-07-06 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: I had marked CellBorderTest as WM dependent when it
- failed on the buildbots. I just realized it was actually failing due to
- a Label change I hadn't committed, which has now been committed.
- 2007-07-05 Jonathan Pobst <[email protected]>
- [Various tests from my local tree]
- * ButtonBaseTest.cs: Test for default Accessibility.State.
- * LabelTest.cs: Test for default Margin.
- * MenuStripTest.cs: Test for CanSelect.
- * ScrollBarTest.cs: Test for 2.0 ScrollBarEventArgs.
- * SplitContainerTests.cs: Uncomment some Dock and Location asserts.
- * StatusStripTest.cs: Tests for default RenderMode and AccessibilityObject.
- * ToolStripDropDownTest.cs: Tests for default TextDirection and AccessibilityObject.
- * ToolStripItemTest.cs: Test for default TextDirection, ProcessMnemonic.
- * ToolStripMenuItemTest.cs: Test for default ForeColor and AccessibilityObject.
- * UserControlTest.cs: Test for AutoSize behavior.
- 2007-07-04 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Add tests for Focused property.
- 2007-07-04 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Add tests for 2.0 FocusedItem property setter.
- 2007-07-03 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Add tests for 2.0 TopItem property setter.
- 2007-07-03 Jonathan Pobst <[email protected]>
- * FormTest.cs, TableLayoutTest.cs: Mark some tests that depend on
- WM decoration sizes as Ignore.
- 2007-06-22 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Add test for 2.0 HotTracking.
- 2007-06-21 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for CellBorderStyle.
- 2007-06-12 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add tests for ScaleControl and GetScaledBounds.
- 2007-06-12 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add test for bug #81843.
- 2007-06-12 Jonathan Pobst <[email protected]>
- * UpDownBaseTest.cs: Test for Min/Max size.
- 2007-06-12 Jonathan Pobst <[email protected]>
- * ErrorProviderTest.cs: Test for Clear method.
- 2007-06-12 Jonathan Pobst <[email protected]>
- * PictureBoxTests.cs: Test for 2.0 field defaults.
- 2007-06-12 Andreia Gaita <[email protected]>
-
- * TabControlTest.cs: Add test for tabcontrol without tabs but with a font
- change (triggers a ResizeTabs call and was blowing up nicely - #81802).
- 2007-06-12 Raja R Harinath <[email protected]>
- * ListViewCollectionsTest.cs (SelectedIndexCollectionTest_IndexOfTest):
- Move to NET_2_0 profile.
- 2007-06-11 Carlos Alberto Cortez <[email protected]>
- * ListViewCollectionsTest.cs: New tests for CheckedItemCollection and
- SelectedIndexCollection when using VirtualMode.
- 2007-06-08 Jonathan Pobst <[email protected]>
- * GroupBoxTest.cs: Argh! I cannot freaking get this right. Remove the "!".
- 2007-06-08 Jonathan Pobst <[email protected]>
- * GroupBoxTest.cs: Missed an if.
- 2007-06-08 Jonathan Pobst <[email protected]>
- * GroupBoxTest.cs: AutoSize is theme dependent.
- 2007-06-08 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add test for ScaleControl.
- 2007-06-08 Jonathan Pobst <[email protected]>
- * GroupBoxTest.cs: Add some 2.0 tests.
- 2007-06-08 Jonathan Pobst <[email protected]>
- * PanelTest.cs: Add.
- 2007-06-07 Jonathan Pobst <[email protected]>
- * ScrollableControlTest.cs: ScrollToControl test is theme dependent due to
- the width of scrollbars.
- 2007-06-07 Jonathan Pobst <[email protected]>
- * ScrollableControlTest.cs: Add test for ScrollToControl.
- 2007-06-06 Jonathan Pobst <[email protected]>
- * ScrollBarTest.cs, SplitterTest.cs: Add some 2.0 tests.
- * ScrollBarTest.cs: Comment out several tests that no longer compile due
- to bug #81818.
- 2007-06-06 Jonathan Pobst <[email protected]>
- * ButtonTest.cs: BehaviorAutoSize is font dependent, only run on windows.
- 2007-06-06 Jonathan Pobst <[email protected]>
- * ButtonBaseTest.cs: Add test for default values.
- * ButtonTest.cs: Add test for default values, add test for AutoSize.
- 2007-06-04 Gert Driesen <[email protected]>
- * PropertyGridTest.cs: Added test for bug #81796, and reworked
- SelectedGridItem_Null test to no longer check actual message.
- 2007-06-01 Jonathan Pobst <[email protected]>
- * FormTest.cs: Modify AutoSizeGrowAndShrink test to pass on all WM's.
- 2007-06-01 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add tests for AutoSize'ing.
- 2007-05-23 Everaldo Canuto <[email protected]>
- * LabelTest.cs: Fix SizeTest for 2.0 profile since autosize theres
- diferent behavior on 2.0.
- 2007-06-01 Rolf Bjarne Kvinge <[email protected]>
- * ScrollableControlTest.cs: Add ResizeAnchoredTest.
- * PropertyGridTest.cs: A few more tests.
- 2007-06-01 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Added a new test for 2.0 RedrawItem method.
- 2007-05-31 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add tests for 2.0 scaling methods.
- 2007-05-30 Andreia Gaita <[email protected]>
- * FocusTest.cs: Add tests for ContainerControl - fire events even if
- there is no form, and set active control before firing events.
- 2007-05-29 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Test to show the effects of ResumeLayout(false).
- 2007-05-28 Carlos Alberto Cortez <[email protected]>
- * ListView.cs:
- * ListViewItem.cs: Added 2.0 ListViewItem.ToolTipText tests.
- 2007-05-28 Rolf Bjarne Kvinge <[email protected]>
- * TextBoxTest.cs: Ignore a couple of font-dependent tests.
- 2007-05-28 Rolf Bjarne Kvinge <[email protected]>
- * MonthCalendarTest.cs: Added InitialSizeTest.
- 2007-05-28 Rolf Bjarne Kvinge <[email protected]>
- * FormTest.cs: Increase timeout value. Might prevent tests from failing
- on slower computers.
- 2007-05-28 Gert Driesen <[email protected]>
- * DateTimePickerTest.cs: Added tests for MinDate and MaxDate.
- 2007-05-27 Gert Driesen <[email protected]>
- * DateTimePickerTest.cs: Avoid test failures on Windows system with
- non-us locale.
- 2007-05-27 Gert Driesen <[email protected]>
- * NumericUpDownTest.cs: Avoid use of global identifier since csc 1.x
- does not support this.
- * FormTest.cs: Avoid using anonymous methods. Allows our test to build
- again using csc 1.x.
- 2007-05-27 Gert Driesen <[email protected]>
- * TreeNodeCollectionTest.cs: Added tests for Add and AddRange. Fixed
- and improved test for IList indexer.
- 2007-05-25 Gert Driesen <[email protected]>
- * TextBoxTest.cs: Improve tests for Copy, Cut and Paste to also cover
- bug #81736.
- 2007-05-25 Rolf Bjarne Kvinge <[email protected]>
- * KeyEventArgsTest.cs: Added.
- 2007-05-24 Andreia Gaita <[email protected]>
- * NumericUpDownTest.cs: Added 1.1 and 2.0 tests.
- 2007-05-24 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs:
- * CheckedListBoxTest.cs: Move the GetItemText test
- to ListControl, since the method it's part of it. Also
- add a FilterItemOnProperty test.
- 2007-05-24 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for bug 81199. (nested controls)
- 2007-05-24 Jonathan Pobst <[email protected]>
- * ContainerControlTest.cs: Test to show ProcessMnemonic is called
- regardless of CanSelect.
- 2007-05-23 Jonathan Pobst <[email protected]>
- * TestHelper.cs: Remove reference to event_log from constructor.
- 2007-05-23 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test to show that setting a control's Visible
- property causes it's parent to relayout.
- 2007-05-23 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for docking when parent has Padding.
- 2007-05-23 Everaldo Canuto <[email protected]>
- * TestHelper.cs: Remove Event log we already have a EventLogger class.
- 2007-05-23 Everaldo Canuto <[email protected]>
- * TestHelper.cs: Event log added.
- 2007-05-23 Everaldo Canuto <[email protected]>
- * ContextMenuTest.cs: ContextMenu tests added.
- 2007-05-23 Rolf Bjarne Kvinge <[email protected]>
- * ToolBarButtonTest.cs: Added test for Name.
- 2007-05-22 Gert Driesen <[email protected]>
- * FormTest.cs: Renamed FormCantGetTooSmall test and use comparison
- with SystemInformation.MinimumWindowSize. Enable test.
- 2007-05-22 Rolf Bjarne Kvinge <[email protected]>
- * FormTest.cs: Added ShowDialogCloseTest.
- 2007-05-21 Jonathan Pobst <[email protected]>
- * FormTest.cs: Mark FormCantGetTooSmall as NotWorking. It only applies to Windows.
- 2007-05-21 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Tests for bugs 81694, 81695.
- * FormTest.cs: Test setting the form size smaller than the WM will
- allow it.
- 2007-05-21 Chris Toshok <[email protected]>
- * DataBindingTests.cs (TestColumnAdd): enable this test. the
- system.data changes required are in, and it works now.
- 2007-05-19 Andreia Gaita <[email protected]>
- * NumericUpDownTest: Added.
- 2007-05-18 Jonathan Pobst <[email protected]>
- * DataObjectTest.cs: Added.
- 2007-05-18 Gert Driesen <[email protected]>
- * TreeViewTest.cs: Added test for DoubleBuffered.
- 2007-05-18 Jonathan Pobst <[email protected]>
- * KeysConverterTest.cs: Added.
- * LinkConverterTest.cs: Added.
- * LinkLabelTest.cs: Added tests for LinkLabel.Link.
- 2007-05-17 Carlos Alberto Cortez <[email protected]>
- * ListBoxTest.cs: New test for some exceptions in
- ListBox.ObjectCollection methods.
- 2007-05-17 Chris Toshok <[email protected]>
- * ControlBindingsCollectionTest.cs: new test file, move a test
- from BindingTest here.
- * BindingTest.cs (DuplicateBindingAdd): move the test to
- ControlBindingsCollectionTest.
- * BindingManagerBaseTest.cs (BindingsTest): enable this test.
- passes now.
- * DataBindingTests.cs: define #WITH_BINDINGS, since we now seem to
- work with them.
- (TestInsertRowBeforeCurrent): ignore this test on 2.0 though, as
- we generate too many Binding.Format events.
- (TestColumnAdd): ignore this test on 1.1, until System.Data
- generates the proper (2) number of events causing us to emit
- MetadataChanged.
- * CurrencyManagerTest.cs (AddNew2): ignore this test for the time
- being. it's hitting a System.Data exception which doesn't happen
- on MS.
- 2007-05-17 Rolf Bjarne Kvinge <[email protected]>
- * TextBoxTest.cs: BackColorTest: Fix it, we may get invalidates and
- paints after a Form.Show ().
- 2007-05-17 Andreia Gaita <[email protected]>
- * TabControlTest.cs: Ignore the enter/leave tests for a bit
- 2007-05-17 Andreia Gaita <[email protected]>
- * TabControlTest.cs: Add tests for Enter/Leave events on tabpages
- 2007-05-17 Jonathan Pobst <[email protected]>
- * TreeViewImageIndexConverterTest.cs: Added.
- 2007-05-17 Jonathan Pobst <[email protected]>
- * ToolStripTextBoxTest.cs: Enable tests for auto complete and shortcuts
- enabled stuff.
- 2007-05-16 Jonathan Pobst <[email protected]>
- * ImageKeyConverterTest.cs: Added.
- * TreeViewImageKeyConverterTest.cs: Added.
- 2007-05-15 Jonathan Pobst <[email protected]>
- * TextBoxTest.cs: Add test for IsInputChar method.
- 2007-05-11 Gert Driesen <[email protected]>
- * ToolStripItemCollectionTest.cs: Removed duplicate test.
- 2007-05-11 Everaldo Canuto <[email protected]>
- * ToolBarTest.cs: Add tests for toolbar size (horizontal and vertical),
- also test #81523.
- 2007-05-10 Everaldo Canuto <[email protected]>
- * ToolBarTest.cs: CreateHandleTest added.
- 2007-05-10 Jonathan Pobst <[email protected]>
- * FormTest.cs: Marking test for bug 81582 as NotWorking as it fails
- on X11. Bug is reopened.
- 2007-05-10 Jonathan Pobst <[email protected]>
- * ToolStripItemCollectionTest.cs: Enable tests.
- 2007-05-10 Rolf Bjarne Kvinge <[email protected]>
- * MaskedTextBoxTest.cs: Added more tests.
- 2007-05-10 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug 81582.
- 2007-05-10 Gert Driesen <[email protected]>
- * ToolStripItemCollectionTest.cs: Added tests for ctor, Insert and
- Remove.
- 2007-05-09 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Expand and enable test for UseWaitCursor.
- 2007-05-09 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Added test for IsInputChar.
- 2007-05-09 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Added tests for PreProcessMessage and
- PreProcessControlMessage.
- 2007-05-08 Gert Driesen <[email protected]>
- * ControlTest.cs: Added test for UseWaitCursor.
- 2007-05-07 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Tests demonstrating Control.AutoSize from
- Stefan Noack.
- 2007-05-07 Jonathan Pobst <[email protected]>
- * ToolStripManagerTest.cs: Add test for bug #81477.
- 2007-05-04 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Expand GetChildAtPointTest to cover 2.0 cases.
- 2007-05-04 Rolf Bjarne Kvinge <[email protected]>
- Added.
- 2007-05-04 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added DeactivatedEventTest.
- 2007-05-03 Chris Toshok <[email protected]>
- * DataBindingTests.cs: enable TestInsertRowAtCurrent in the 2.0
- profile as well.
- 2007-05-03 Jonathan Pobst <[email protected]>
- * ApplicationTest.cs: Add a test for RaiseIdle.
- 2007-05-01 Frederik Carlier <[email protected]>
- * TreeNodeCollectionTest.cs: Add Unit tests for ContainsKey and
- IndexOfKey methods.
- 2007-04-30 Gert Driesen <[email protected]>
- * DataGridViewColumnTest.cs: Added test for bug #81464, improved
- existing tests.
- * DataGridViewTextBoxCellTest.cs: Added test for Value.
- * RichTextBoxTest.cs: Added test for bug #80626.
- * TabControlTest.cs: Added test for TabPageCollection indexer.
- * TextBoxTest.cs: Enabled test for bug #80626.
- 2007-04-29 Andreia Gaita <[email protected]>
- * TabControlTest.cs: Add more 2.0 select and deselect tab tests.
- 2007-04-28 Gert Driesen <[email protected]>
- * DataBindingTest.cs: Avoid using anonymous methods to allow tests to
- build using csc 1.x.
- * CurrencyManagerTest.cs: Same.
- 2007-04-24 Alan McGovern <[email protected]>
- * BindingNavigatorTest.cs: Ignored failing test until a bug gets fixed
- 2007-04-27 Chris Toshok <[email protected]>
- * CurrencyManagerTest.cs, DataBindingTests.cs,
- BindingManagerBaseTest.cs, BindingSourceTest.cs, BindingTest.cs:
- lots of misc changes.
- 2007-04-26 Jonathan Pobst <[email protected]>
- * ToolStripTest.cs: Fix the failing MethodGetNextItem test.
- 2007-04-25 Rolf Bjarne Kvinge <[email protected]>
- * FormHandleTest.cs, ControlEventTest.cs, MenuStripTest.cs,
- ProgressBarTest.cs, RichTextBoxTest.cs, ListViewEventTest.cs,
- TreeViewTest.cs, ColumnHeaderTest.cs, ApplicationContextTest.cs,
- MdiFormTest.cs, MenuItemTest.cs, TextBoxTest.cs, ListBoxTest.cs,
- ToolStripTest.cs, ToolStripMenuItemTest.cs, ControlTest.cs,
- ToolBarTest.cs: Dispose of the 61 forms we were keeping open while
- running the tests.
- * ApplicationTest.cs: Dispose of the 61 forms we were keeping open
- while running the tests. Added OpenFormsTest.
- * FormTest.cs: Dispose of the 61 forms we were keeping open while
- running the tests. Added DialogOwnerTest.
- 2007-04-24 Alan McGovern <[email protected]>
- * BindingNavigatorTest.cs: Added more tests to check more behaviour
- 2007-04-24 Jonathan Pobst <[email protected]>
- * ToolStripDropDownTest.cs: Add Assert for default orientation.
- * ToolStripTest.cs: Enable tests for CanOverflow and DefaultDropDownDirection.
- Add test for GetNextItem.
- 2007-04-24 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added tests for #81409.
- 2007-04-24 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added tests for #81409.
- 2007-04-24 Raja R Harinath <[email protected]>
- * BindingNavigatorTest.cs (CheckStandardItems): Avoid use of NUnit
- API newer than present in the tree.
- 2007-04-24 Alan McGovern <[email protected]>
- * BindingNavigatorTest.cs: Initial tests
- 2007-04-23 Chris Toshok <[email protected]>
- * TestHelper.cs: move RunningOnUnix here.
- * FocusTest.cs: use TestHelper.RunningOnUnix.
- * FormTest.cs: use TestHelper.RunningOnUnix.
- 2007-04-23 Jonathan Pobst <[email protected]>
- * TableLayoutTest.cs: Add a bunch of tests I thought I had lost
- before I lose them for real.
- 2007-04-21 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Added test for bug #81397.
- 2007-04-21 Gert Driesen <[email protected]>
- * RichTextBoxTest.cs: Added test for bug #80620.
- * TreeViewTest.cs: Added test for bug #80620.
- * ListViewTest.cs: Added test for bug #80620.
- * UpDownTest.cs: Added test for bug #80620.
- * TextBoxTest.cs: Enabled test for bug #80620.
- 2007-04-19 Jonathan Pobst <[email protected]>
- * GroupBoxTest.cs: Add tests for default properties and
- DisplayRectangle.
- 2007-04-18 Gert Driesen <[email protected]>
- * FormTest.cs: Enabled test for bug #80773.
- 2007-04-17 Chris Toshok <[email protected]>
- * BindingTest.cs: remove the NotWorking from
- BindingContextChangedTest2, and add a new, NotWorking test.
- 2007-04-16 Jonathan Pobst <[email protected]>
- * ButtonTest.cs, ToolStripItemTest.cs: Remove image stretching
- from ImageList tests and reenable tests.
- 2007-04-13 Jonathan Pobst <[email protected]>
- * ToolStripItemTest.cs: Enable a bunch of tests for recently
- implemented properties.
- * ToolStripManager.cs: Add tests for Merge and RevertMerge.
- 2007-04-09 Gert Driesen <[email protected]>
- * DataGridTextBoxColumnTest.cs: Added IsInEditOrNavigateMode tests.
- Enabled test after IsInEditOrNavigateMode fix.
- 2007-04-09 Gert Driesen <[email protected]>
- * DataGridTextBoxColumnTest.cs: Added tests for IFormattable and
- TypeConverter usage in Edit and Commit.
- 2007-04-08 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Added several ctor tests. Added tests to verify
- throws exceptions. Added tests for ListViewSubItemCollection's Clear
- and RemoteAt methods that prove that we need to ensure there's always
- at least one subitem.
- 2007-04-07 Gert Driesen <[email protected]>
- * ProgressBarTest.cs: Added ForeColor and ResetForeColor tests.
- * TextBoxTest.cs: Added NotWorking tests for bugs #80620 and #80626.
- 2007-04-05 Gert Driesen <[email protected]>
- * TreeViewTest.cs: Added NotWorking test for bug #81319.
- 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Ignore EventStyleTest (can't find a reliable way to
- generate paint messages on Windows) and change PubPropTest to
- accept (0,0) as a valid mouse location.
- 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
- * DateTimePickerTest.cs: Added a few more cases to TextTest.
- 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
- * DateTimePickerTest.cs: Added a few more cases to TextTest.
- 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added ChangeClientSizeTest for bug 80995.
- 2007-04-02 Rolf Bjarne Kvinge <[email protected]>
- * ContainerControlTest.cs: Add RemoveActiveControlTest
- * MdiFormHandleTest.cs, BindingTest.cs: Remove stacktrace from output.
- * FormTest.cs: Add special window style cases.
- 2007-03-31 Gert Driesen <[email protected]>
- * RichTextBoxTest.cs: Added BackColor test. Improved ReadOnly tests.
- Added ScrollBars tests.
- * TextBoxTest.cs: Improve BackColor test. Added ScrollBars tests.
- Improved ReadOnly tests.
- 2007-03-30 Gert Driesen <[email protected]>
- * FormHandleTest.cs: Enabled test for bug #81272.
- 2007-03-30 Jonathan Pobst <[email protected]>
- * HScrollPropertiesTest.cs, VScrollPropertiesTest.cs: Added.
- 2007-03-30 Jonathan Pobst <[email protected]>
- * UserControlTest.cs: Add test for CreateParams.
- 2007-03-30 Gert Driesen <[email protected]>
- * FormHandleTest.cs: Added test for bug #81272.
- 2007-03-30 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added test for #79964.
- 2007-03-28 Jonathan Pobst <[email protected]>
- * ToolStripOverflowButtonTest.cs, ToolStripOverflowTest.cs: Disable
- some tests I didn't mean to commit yet.
- 2007-03-28 Jonathan Pobst <[email protected]>
- * StatusStripTest.cs: Added.
- * ToolStripContainerTest.cs: Added.
- * ToolStripContentPanelTest.cs: Added.
- * ToolStripDropDownTest.cs: Added.
- * ToolStripManagerTest.cs: Added.
- * ToolStripOverflowButtonTest.cs: Added.
- * ToolStripOverflowTest.cs: Added.
- * ToolStripPanelTest.cs: Added.
- * ToolStripProgressBarTest.cs: Enable tests about MarqueeAnimationSpeed.
- * ToolStripStatusLabelTest.cs: Added.
- 2007-03-26 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Add tests for constructors taking
- an array of strings, for the ListViewSubItem constructors,
- and for the ListViewSubItemCollection.AddRange method receiving
- and array of null strings.
- 2007-03-25 Jonathan Pobst <[email protected]>
- * ToolStripTest.cs: Fix ambiguous Category attribute.
- 2007-03-25 Jonathan Pobst <[email protected]>
- * ToolStripTest.cs: Mark WM decoration dependent test as NotWorking.
- 2007-03-25 Jonathan Pobst <[email protected]>
- * ButtonTest.cs: Add test demonstrating the behavior of ImageList.
- * MenuStripTest.cs: General test suite.
- * ToolStripComboBoxTest.cs: Enable tests for FlatStyle.
- * ToolStripControlHostTest.cs: Form.ShowInTaskbar = false.
- * ToolStripItemTest.cs: Test for method Dispose.
- * ToolStripMenuItemTest.cs: Add tests for constructor and keyboard shortcuts.
- * ToolStripProgressBarTest.cs: Enable previously NotWorking test.
- * ToolStripTest.cs: Add tests for Overflow, Dock/Orientation, and
- CreateLayoutSettings.
- 2007-03-24 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Enable some NotWorking tests that now
- work correctly.
- 2007-03-24 Jonathan Pobst <[email protected]>
- * ProgressBarTest.cs, ScrollBarTest.cs, TimerTest.cs: Update
- tests to pass on .Net 2.0.
- 2007-03-22 Jonathan Pobst <[email protected]>
- * FormTest.cs: Mark new test FormStartupPositionChangeTest as
- NotWorking to fix the monobuild.
- 2007-03-22 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Make StartLocationTest NotWorking, it fails on
- monobuild for unknown reasons.
- * FormTest.cs: Make Location NotWorking, it fails on monobuild for
- unknown reasons.
- 2007-03-22 Chris Toshok <[email protected]>
- * FormTest.cs: enable Location test for #80052.
- 2007-03-22 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added a StartLocationTest, and commented out all old
- StartLocationTest*s, since they are failiing on WinXP with XP
- theme.
- * FormTest.cs: Added tests for StartPosition.
- 2007-03-21 Rolf Bjarne Kvinge <[email protected]>
- * DefaultLayoutTest.cs: Fixed line endings.
- * BindingSourceTest.cs: Remove a couple of warnings.
- 2007-03-19 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs: Add test for BackColor, ForeColor,
- UseItemStyleForSubItems.
- 2007-03-20 Rolf Bjarne Kvinge <[email protected]>
- * EventLogger.cs: Add CountEvents.
- * MdiFormTest.cs: Added CloseTest.
- 2007-03-19 Gert Driesen <[email protected]>
- * RichBoxTest.cs: Disabled ReadOnly test until I can test it on linux.
- 2007-03-19 Gert Driesen <[email protected]>
- * RichBoxTest.cs: Enabled ReadOnly test.
- 2007-03-19 Gert Driesen <[email protected]>
- * PaintEventArgsTest.cs: Enabled tests for bug #78448 on 2.0 profile.
- 2007-03-19 Jonathan Pobst <[email protected]>
- * ToolStripTest.cs: Enable gert's DockSize test for bug #80762.
- 2007-03-19 Rolf Bjarne Kvinge <[email protected]>
- * FormHandleTest.cs: Create new forms at a few specific places + a few
- more corner cases. No longer not working.
- * MdiFormHandleTest.cs: These tests are working now.
- * FormTest.cs: IsHandleCreated is working now, the parented tests are
- not working.
- 2007-03-19 Everaldo Canuto <[email protected]>
- * MenuItemTest.cs: Add test for OwnerDraw (#81182).
- 2007-03-19 Gert Driesen <[email protected]>
- * RichTextBoxTest.cs: Marked failing test NotWorking.
- 2007-03-19 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Added InvokeTestParentHandle.
- 2007-03-18 Gert Driesen <[email protected]>
- * RichTextBoxTest.cs: Added tests for ReadOnly effect on BackColor.
- * TextBoxTest.cs: Added tests for ReadOnly effect on BackColor.
- 2007-03-17 Rolf Bjarne Kvinge <[email protected]>
- * ComboBoxTest.cs: Added DataBindingTest.
- 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Make TopLevelTest not working until the fix is ready
- to get in.
- 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs, ControlTest.cs: Remove a warning.
- 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
- * ApplicationContextTest.cs: Added NotWorking test for nested
- application contexts.
- * ControlHandleTest.cs: Comment out the dnd tests, they create a form
- on windows that won't close until the mouse is moved. Add a few
- more corner cases to the test.
- * MdiFormTest.cs: Add TopLevelTest.
- 2007-03-15 Chris Toshok <[email protected]>
- * BindingSourceTest.cs: add another test, and mark the NotWorking
- ones so that they aren't clogging up the 2.0 build.
- 2007-03-15 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for bug #80912.
- 2007-03-15 Ivan N. Zlatev <[email protected]>
-
- * Common.cs, TestHelper.cs: Replaces all uses of the custom
- WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
- 2007-03-15 Chris Toshok <[email protected]>
- * ControlTest.cs: add Ivan's WindowTargetTest after fixing them,
- with an extra one included.
- 2007-03-15 Rolf Bjarne Kvinge <[email protected]>
- * FormTest.cs: Disable FormBorderStyleTest for the moment.
- * DefaultLayoutTest.cs: Disable BehaviorOverriddenDisplayRectangle for the moment.
-
- 2007-03-14 Jackson Harper <[email protected]>
- * TreeViewTest.cs: Some more tests pass now.
- 2007-03-14 Gert Driesen <[email protected]>
- * ErrorProviderTest.cs: Enabled previously failing tests.
- 2007-03-14 Andreia Gaita <[email protected]>
- * TabControlTest.cs: Add tests for Deselecting, Deselected,
- Selecting events.
- 2007-03-14 George Giolfan <[email protected]>
- * TreeViewTest.cs: Add TreeViewNodeSorterTest.
- 2007-03-13 Gert Driesen <[email protected]>
- * ErrorProviderTest.cs: Improved GetandSetErrorTest. Marked failing
- test NotWorking. Removed extra tabs.
- 2007-03-13 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #80773.
- 2007-03-12 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test for bug #81125.
- 2007-03-12 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add a test showing we do not recreate the handle when
- MinimizeBox or MaximizeBox is changed. [Part of bug #80640]
- 2007-03-12 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Add test for bug #80621.
- 2007-03-11 Everaldo Canuto <[email protected]>
- * LinkLabelTest.cs: LinkLabel tests added.
- 2007-03-10 Gert Driesen <[email protected]>
- * FormHandleTest.cs: Fixed build using csc 1.x.
- * MdiFormHandleTest.cs: Fixed build using csc 1.x. Removed extra tabs.
- * ControlHandleTest.cs: Fixed build using csc 1.x.
- * TextBoxTest.cs: Improved test for BackColor. Added test for
- ForeColor.
- 2007-03-10 Gert Driesen <[email protected]>
- * TextBoxTest.cs: Isolate BackColor tests.
- 2007-03-09 Rolf Bjarne Kvinge <[email protected]>
-
- * FormHandleTest.cs: Added.
- * MdiFormHandleTest.cs: Added.
- 2007-03-08 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Added tests for the ListView and
- Index properties of ListViewItems in VirtualMode.
- * ListViewCollectionsTest.cs: Remove warning when building
- tests.
- 2007-03-08 Gert Driesen <[email protected]>
- * FormTest.cs: Added tests for bug #80791 and #80574.
- 2007-03-08 Rolf Bjarne Kvinge <[email protected]>
- * SendKeysTest.cs: Fixed to not hang keyboard on Windows.
- 2007-03-08 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add tests for bugs #80574, #80791.
- 2007-03-05 Chris Toshok <[email protected]>
- [merge -r72718:73765 from mwf-handle-branch]
- 2007-03-05 Chris Toshok <[email protected]>
- * ControlHandleTest.cs: make this build on both 1.1 and 2.0
- profiles.
- 2007-02-28 Chris Toshok <[email protected]>
- * ControlTest.cs: Flesh out ControlInvokeTest to make sure that
- the Control thread dies (that Application.Run returns, basically).
- This works in isolation, but for some reason it isn't exiting when
- run in concert with other tests (this test is the cause of the
- hangs running the unit tests.) Marking NotWorking for the time
- being. This needs to be fixed before merging back to the
- mainline, imo.
- 2007-03-02 Rolf Bjarne Kvinge <[email protected]>
- * FormTest.cs: Added MaximizedParentedFormTest.
- 2007-03-02 Carlos Alberto Cortez <[email protected]>
- * ListViewCollectionsTest.cs: Added tests for the exceptions thrown
- by ListViewItemCollection when virtual mode is used.
- 2007-03-01 Gert Driesen <[email protected]>
- * ListViewCollectionsTest.cs: Added ColumnHeader.Index tests.
- * ColumnHeaderTest.cs: Added more DisplayIndex tests.
- 2007-02-29 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Add test for VirtualMode and VirtualSize,
- as well as for the exceptions they throw.
- 2007-02-28 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for bug #80917.
- 2007-02-26 Gert Driesen <[email protected]>
- * ListViewCollectionsTest.cs: Added and improved tests for removing
- columns and items, and clearing the collections.
- * ListViewTest.cs: Improved ClearTest to also verify whether removed
- columns and items are unlinked from owning ListView.
- 2007-02-23 Raja R Harinath <[email protected]>
- Fix compilation error
- * DataGridViewRowTest.cs (System.ComponentModel): Remove unused 'using'.
- 2007-02-22 Gert Driesen <[email protected]>
- * DataGridViewRowTest.cs: Added tests for Height and MinimumHeight.
- 2007-02-21 Gert Driesen <[email protected]>
- * ComboBoxTest.cs: Added test for setting Text to null if SelecedIndex
- is already -1.
- 2007-02-19 Gert Driesen <[email protected]>
- * ComboBoxTest.cs: Added test for Text. Added and improved tests for
- FindString and FindStringExact. Improved ObjectCollection tests.
- 2007-02-19 Rolf Bjarne Kvinge <[email protected]>
- * ListControlTest.cs: Added test for #80794.
- 2007-02-19 Rolf Bjarne Kvinge <[email protected]>
- * FormTest.cs: Added NotWorking test for Form CreateParams.Style and
- ExStyle and a test for parented forms.
- 2007-02-18 Gert Driesen <[email protected]>
- * SaveFileDialogTest.cs: Added tests for SaveFileDialog.
- 2007-02-15 Jonathan Pobst <[email protected]>
- * ToolStripItemTest.cs: BehaviorImageList fails on *nix due to a bug in
- libgdiplus: #80842. Marked as Ignore for now, will re-enable when
- bug is fixed.
- 2007-02-15 Rolf Bjarne Kvinge <[email protected]>
- * DateTimePickerTest.cs: Use OSVersion to determine whether to call
- GetUserDefaultLCID or not, seems like the runtime crashes on some
- architectures instead of throwing an exception otherwise.
- 2007-02-15 Rolf Bjarne Kvinge <[email protected]>
- * DateTimePickerTest.cs: Some culture dependant tests are only supposed
- to run with en-US locale, so check it. On Windows call
- GetUserDefaultLCID to check it, since MS DateTimePicker doesn't
- honor Thread.CurrentCulture, only the Windows setting (and some
- other test might have set Thread.CurrentCulture to some other
- value, so the checking only this might fail). Added test for
- setting invalid Text property.
- * EventLogger.cs: Added. Takes an object and creates a class on the fly
- that will log all the object's events.
- 2007-02-14 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Added DisposeTest test for bug #80607.
- * ColumnHeaderTest.cs: Remove the NotWorking category for
- tests for bug #80607.
- 2007-02-13 Everaldo Canuto <[email protected]>
- * LabelTest.cs: Add asserts for CompatibleTextRendering = false
- on PreferredHeight test for 2.0 profile.
- 2007-02-13 Rolf Bjarne Kvinge <[email protected]>
- * DateTimePickerTest.cs, ControlHandleTest.cs: Remove warnings.
- 2007-02-13 Rolf Bjarne Kvinge <[email protected]>
- * DataGridColumnStyleTest.cs, ColumnStyleTest.cs, LabelTest.cs,
- PropertyManagerTest.cs, CurrencyManagerTest.cs,
- DataGridTextBoxColumnTest.cs, UpDownTest.cs, FocusTest.cs,
- GridColumnStylesCollectionTest.cs,
- GridTableStylesCollectionTest.cs, TreeNodeCollectionTest.cs,
- ScrollBarTest.cs, ListBoxTest.cs, TabControlTest.cs,
- BindingContextTest.cs, RowStyleTest.cs: Removed warnings.
- 2007-02-12 Everaldo Canuto <[email protected]>
- * LabelTest.cs: "NotWorking" removed from PreferredHeight test.
- 2007-02-12 Everaldo Canuto <[email protected]>
- * LabelTest.cs: Rename PreferredSize test to PreferredWidth and
- create PreferredHeight.
- 2007-02-10 Gert Driesen <[email protected]>
- * PrintDialogTest.cs: Fixed DefaultValues test on 2.0 profile.
- * ToolStripTest.cs: Added test for bug #80762. Enabled ignored test.
- 2007-02-09 Gert Driesen <[email protected]>
- * FormTest.cs: Added tests for bug #80773.
- 2007-02-09 Gert Driesen <[email protected]>
- * PrintDialogTest.cs: Added test for bug #80764.
- 2007-02-08 Jonathan Pobst <[email protected]>
- * ToolStripItemTest.cs: Uncomment tests relating to Overflow. Add
- test exploring interaction between Image, ImageIndex, and ImageKey.
- 2007-02-08 Gert Driesen <[email protected]>
- * FormTest.cs: Improved test for bug #80604.
- 2007-02-08 Gert Driesen <[email protected]>
- * ControlTest.cs: Removed use of #pragma to allow tests to be built using
- csc 1.x.
- 2007-02-08 Gert Driesen <[email protected]>
- * LogGenerator.cs: Generate code that can be built using csc 1.x.
- * ControlLogger.cs: Fixed code to compile using csc 1.x.
- 2007-02-08 Rolf Bjarne Kvinge <[email protected]>
- * DateTimePickerTest.cs: Created more tests for DateTimePicker, now
- tests a lot of different custom formats.
- 2007-02-07 Gert Driesen <[email protected]>
- * DataGridViewColumnTest.cs: Added test for bug #80746.
- 2007-02-07 Gert Driesen <[email protected]>
- * ListBoxTest.cs: Added tests for bug #80696 and bug #80753.
- 2007-02-06 Rolf Bjarne Kvinge <[email protected]>
- * TimerTest.cs: Added
- 2007-02-04 Gert Driesen <[email protected]>
- * PaddingConverterTest.cs: Added back ConvertTo and ConvertFrom tests,
- and make them pass on all cultures.
- 2007-02-04 Jonathan Pobst <[email protected]>
- * PaddingConverterTest.cs: Make tests non culture-dependent.
- 2007-02-03 Rolf Bjarne Kvinge <[email protected]>
- * TestHelper.cs: Added a helper method to remove warnings.
- 2007-02-03 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Removed warnings. Added CaptureTest.
- * LogGenerator.cs: Added (used to generate ControlLogger and ControlLogger2).
- * ControlLogger(2).cs: Added.
- 2007-02-01 Everaldo Canuto <[email protected]>
- * LabelTest.cs: StyleTest created to test #79537. TestHelper was used.
- 2007-02-01 Everaldo Canuto <[email protected]>
- * TestHelper.cs: TesHelper class added. This class will provide some
- usefull methods that can be used to test Control derived classes,
- at moment only static methods GetCreateParams, IsStyleSet and
- IsExStyleSet is implements. A copy of WindowStyles, WindowExStyles
- and Msg is also available as public to help is control tests.
- 2007-02-01 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Added ControlSizeTest.
- 2007-01-31 Jonathan Pobst <[email protected]>
- * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
- Mark BehaviorAutoSize as NotWorking, it is font dependent.
- 2007-01-29 Chris Toshok <[email protected]>
- * ControlHandleTest.cs: make this compile against mono. we can
- remove the __MonoCS__ ifdefs as we add properties. Also, split
- out the Show() tests because they were failing and I wanted to see
- which other tests were passing.
- 2007-01-26 Jonathan Pobst <[email protected]>
- * PaddingConverterTest.cs: Added.
- 2007-01-26 Rolf Bjarne Kvinge <[email protected]>
- * StatusBarTest.cs: Added a few more tests.
- 2007-01-25 Jonathan Pobst <[email protected]>
- * ControlHandleTest.cs: Added. Has tests to find exactly which
- Methods and Properties create a Handle. Not added to sources file
- because it's written against MS, and we're probably missing some
- methods/properties.
- 2007-01-25 Jonathan Pobst <[email protected]>
- * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
- Try to make some tests not Font/DPI dependent.
- 2007-01-25 Chris Toshok <[email protected]>
- * SplitterTest.cs: new tests.
- 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
- * ComboBoxTest.cs: Added tests for ResetText.
- 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
- * ComboBoxTest.cs: Add tests for new properties.
- * MdiFormTest.cs: Set ShowInTaskbar = false for main forms.
- 2007-01-24 Gert Driesen <[email protected]>
- * FormTest.cs: Added NotWorking test for bug #80604.
- * ColumnHeaderTest.cs: Added tests for bug #80607. Added test for
- properties introduced in 2.0 profile.
- 2007-01-24 Jonathan Pobst <[email protected]>
- * ComboBoxTest.cs: Add FindStringExactMaxExceptionNet20 test.
- * FormTest.cs: Mark BehaviorResizeOnBorderStyleChangedNotVisible as NotWorking,
- it's values match MS only.
- * LabelTest.cs: Mark AutoSizeChangedChangedTest as Ignore for 2.0 until it is
- reworked.
- * ToolStripTextBoxTest.cs: Mark PropertyModified as Ignore until a bug in TextBox
- is fixed. Same for Constructor: A12.
- 2007-01-24 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Marked OnPaintDoubleBufferedTest as Interactive,
- they'll only work if you actually have a display to show them on.
- 2007-01-23 Everaldo Canuto <[email protected]>
- * ToobarTest.cs: Comment DPI dependent asserts in ButtonSize test.
- 2007-01-23 Everaldo Canuto <[email protected]>
- * ToobarTest.cs: TooBar.ButtonSize tests added.
- 2007-01-23 Jonathan Pobst <[email protected]>
- * GridTableStylesCollectionTest.cs: Mark TestAdd as NotWorking.
- There is a TODO in the DataGrid source referencing that Add should allow
- multiple columns with the same name, but currently doesn't.
- 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Added a tests for ControlCollection and
- MDI children.
- 2007-01-23 Andreia Gaita <[email protected]>
- * SendKeysTest.cs: Marked interactive, they're unstable
- * ControlTest.cs (ControlSetTopLevelTest): TestForm marked NotWorking,
- we have to see why SetTopLevel is toggling the Form's visibility.
-
- 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Make OnPaintTest NotWorking, since it only
- works once in a while.
- 2007-01-23 Chris Toshok <[email protected]>
- * BindingSourceTest.cs: initial BindingSource tests. not built
- yet.
- 2007-01-23 Chris Toshok <[email protected]>
- * DefaultLayoutTest.cs: make the docking tests independent of
- constants relating to the form's clientrectangle bounds, since on
- X it has a different value when the window isn't mapped (as in
- this case).
- 2007-01-23 Andreia Gaita <[email protected]>
- * DefaultLayoutTest.cs: correct TestDockFillFirst and TestDockFillLast,
- failing on ms.net
- 2007-01-23 Andreia Gaita <[email protected]>
- * SendKeysTest.cs: wrong value for Interval, should be > 0
- 2007-01-23 Andreia Gaita <[email protected]>
- * BindingTest.cs (BindingContextChangedTest2): Added 2.0-specific check,
- was failing under ms.net.
-
- * ComboBoxText.cs (FindStringExactMatchException): Add check for exception
- only for 1.1 - was failing under ms.net
-
- * ControlTest.cs:
- - AnchorDockTest: Fix incorrect assertion #5 - was failing
- under ms.net
- - TestForm: Fix incorrect assertion #4 - was failing
- under ms.net
- * TreeNodeCollectionTest.cs: Add new Add() tests for 2.0
- 2007-01-18 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #80574.
- 2007-01-22 Jonathan Pobst <[email protected]>
- * TabControlTest.cs: Add tests for SelectTab and Selected event.
- 2007-01-20 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add tests for Dock.Fill behavior
- with other !Dock.Fill controls.
- 2007-01-20 Jonathan Pobst <[email protected]>
- * DefaultLayoutTest.cs: Add test for interactions between
- setting Dock and Anchor.
- 2007-01-19 Jonathan Pobst <[email protected]>
- * TreeNodeTest.cs: Add test for 2.0 Name property.
- 2007-01-19 Chris Toshok <[email protected]>
- * DataGridTextBoxColumnTest.cs: add a couple more tests to see how
- DataGrid.ReadOnly affects things.
- 2007-01-19 Chris Toshok <[email protected]>
- * DataGridTextBoxColumnTest.cs: mark TestUpdateUI as NotWorking,
- and add a couple of tests for the overloaded ReadOnly property.
- can't figure out how it's being used, maybe all it really does is
- chain up to base.ReadOnly.
- * DataGridColumnStyleTest.cs: add some tests to see if we should
- be mucking with the ReadOnly property when the PropertyDescriptor
- is set (turns out we shouldn't be).
- 2007-01-18 Jonathan Pobst <[email protected]>
- * FormTest.cs: Add test for bug #79959.
- 2007-01-18 Rolf Bjarne Kvinge <[email protected]>
- * StatusBarTest.cs: Added tests for StatusBarPanelCollection.
- * StatusBarPanelTest.cs: Added tests for new properties in StatusBarPanel.
- 2007-01-18 Jonathan Pobst <[email protected]>
- * NotifyIconTest.cs: Add test for Tag, ContextMenuStrip.
- 2007-01-18 Chris Toshok <[email protected]>
- * DataGridTextBoxColumnTest.cs: add some tests (some of which aren't working on mono)
- * DataGridTextBoxTest.cs: add some tests (some of which aren't working on mono)
- 2007-01-16 Chris Toshok <[email protected]>
- * UpDownTest.cs: add UpDownActiveControlTest.
- 2007-01-16 Jonathan Pobst <[email protected]>
- * ControlPropertyEventsTest.cs: Enable PropertyMinimumSize test.
- * ControlTest.cs: Move ControlCollection tests to ControlCollectionTest.cs.
- * EventArgsTest.cs, FlowPanelTests.cs: Change namespace to match all other tests.
- * FormTest.cs: Add tests for FormClosed event and Show (IWin32Window).
- * MenuStripTest.cs: Add test for MDI.
- * SplitContainerTest.cs: Change namespace, remove TestNotRelaventProperties.
- * ToolStripMenuItemTest.cs: Add test for MDI.
- * ToolStripTest.cs: Ignore ControlStyle, Un-Ignore PropertyAutoSize.
- 2007-01-16 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added tests for ActiveChild for mdi parents.
- 2007-01-15 Everaldo Canuto <[email protected]>
- * MenuTest.cs: Add test for #80006, mainmenu merge operations.
- 2007-01-15 Everaldo Canuto <[email protected]>
- * MenuItemTest.cs: Remove the "NotWorking" from MenuItemMerge test.
- 2007-01-14 Carlos Alberto Cortez <[email protected]>
- * ListViewTest.cs: Add tests for new 2.0 FindItemWithText methods.
- 2007-01-13 Andreia Gaita <[email protected]>
- * ControlTest.cs: Add test to check if Exception is raised when
- adding a top level control (form) as a child control
-
- 2007-01-12 Gert Driesen <[email protected]>
- * ControlStyleTest.cs: Added style test for LinkLabel with text, but
- no links.
- 2007-01-12 Gert Driesen <[email protected]>
- * FocusTest.cs: Ignore tests that rely on Form.Show () synchronously
- generating WM_ACTIVATE on unix.
- * FormTest.cs: Same.
- 2007-01-10 Chris Toshok <[email protected]>
- * FocusTest.cs: Disable a couple of tests that rely on the
- focus/active control state being available directly after
- form.Show() - doesn't work on X11, since form.Show shows the
- window asynchronously. Also, add a large focus/enter/leave event
- handling test andreia and I were using to correct problems in
- ContainerControl.set_ActiveControl.
-
- * FormTest.cs: add a test to show that even if OnActivate is
- overriden and not chained up to the base class, ActiveControl is
- still set. Unfortunately it doesn't work on the X11 backend
- because Form.Show is necessarily an async operation.
- * ApplicationTest.cs: don't show forms in the taskbar, and dispose
- of them.
- * ApplicationContextTest.cs: same.
- 2007-01-10 Carlos Alberto Cortez <[email protected]>
- * ColumnHeaderTest.cs: Add a test for settings Width to -1 and
- -2 values (auto resizing).
- 2007-01-10 Chris Toshok <[email protected]>
- * ContainerControlTest.cs: add a test for setting ActiveControl to
- a non-child control.
- 2007-01-08 Jonathan Pobst <[email protected]>
- * FormTest.cs: Added tests for ensuring Form.OnFormClosing is called.
- 2007-01-08 Jonathan Pobst <[email protected]>
- * ControlTest.cs: Added tests for 2.0 ControlCollection methods.
- 2007-01-05 Gert Driesen <[email protected]>
- * ControlTest.cs: Added test for bug #80456.
- 2007-01-05 Jonathan Pobst <[email protected]>
- * ControlPropertyEventsTest.cs: Added. These test property getters and
- setters and ensure that all relevant events are called on setters for
- Control.
- 2007-01-04 Chris Toshok <[email protected]>
- * CommonDialogsTest.cs: disable FolderBrowserDialogTest (and add a
- stack trace in a comment).
-
- * RichTextBoxTest.cs: disable FindTest.
-
- 2007-01-04 Andreia Gaita <[email protected]>
- * FormTest.cs: disabled ActivateTest
- * FocusTest.cs: disabled ActiveControl_Disabled test
- 2007-01-04 Carlos Alberto Cortez <[email protected]>
- * ColumnHeaderTest.cs: New test.
- 2007-01-04 Jonathan Pobst <[email protected]>
- * CommonDialogTest.cs, CursorTest.cs, ErrorProviderTest.cs,
- HelpProviderTest.cs: Add tests for Tag properties.
- * LinkAreaTest.cs: Add test for ToString.
- 2007-01-03 Gert Driesen <[email protected]>
- * ControlTest.cs: Enabled tests after DefaultFont change. Ignore test
- that is DPI-dependent.
- * RichTextBoxTest.cs: Ignore test that is DPI-dependent.
- * TextBoxTest.cs: Ignore test that is DPI-dependent.
- 2007-01-02 Gert Driesen <[email protected]>
- * ControlTest.cs: Added FontHeight test.
- 2007-01-02 Gert Driesen <[email protected]>
- * ListControlTest.cs: Added test for AllowSelection.
- * UpDownTest.cs: MockItem is now nested class.
- * ListBoxTest.cs: Added test for AllowSelection.
- * CheckedListBoxTest.cs: Added tests for DisplayMember, GetItemText,
- SelectionMode, Text and ValueMember.
- 2007-01-01 Gert Driesen <[email protected]>
- * ToolBarTest.cs: Enabled test for bug #80416.
- 2006-12-31 Chris Toshok <[email protected]>
- * ControlEventTest.cs: add SizeChanged to the resize/layout event
- test.
- 2006-12-31 Chris Toshok <[email protected]>
- * ControlTest.cs: new test for Anchor/Dock interactions. Also add
- tests for Control.SetTopLevel.
- 2006-12-31 Andreia Gaita <[email protected]>
- * ContainerControlTest.cs / FocusTest.cs: Moved Gert's
- ActiveControl tests to FocusTest, for easier management.
- Add Validation tests.
- 2006-12-31 Gert Driesen <[email protected]>
- * UpDownTest.cs: Added tests for DomainUpDown and NumericUpDown.
- 2006-12-31 Gert Driesen <[email protected]>
- * ToolBarTest.cs: Added test for bug #80416.
- 2006-12-30 Gert Driesen <[email protected]>
- * ContainerControlTest.cs: Added tests for ActiveControl.
- 2006-12-30 Chris Toshok <[email protected]>
- * DefaultLayoutTest.cs: add some more variants for the test for
- 80336, and remove the NotWorking from the 80336 test.
- * SendKeysTest.cs: mark these tests as not working with Xvfb so I
- can exclude them.
- 2006-12-29 Gert Driesen <[email protected]>
- * DataGridTest.cs: Fixed compiler warnings.
- 2006-12-29 Gert Driesen <[email protected]>
- * ControlTest.cs: Marked FontTest and ResetFontTest as NotWorking
- until Theme.DefaultFont change is approved.
- 2006-12-29 Chris Toshok <[email protected]>
- * ControlEventTest.cs: add a test to determine the ordering of
- Layout/Resize events.
- 2006-12-29 Gert Driesen <[email protected]>
- * TreeNodeTest.cs: Fixed FullPathException test on 2.0 profile.
- 2006-12-29 Gert Driesen <[email protected]>
- * ControlTest.cs: Added test for Font and ResetFont.
- * DataGridTest.cs: Fixed CaptionFont test on 2.0 profile.
- 2006-12-29 Gert Driesen <[email protected]>
- * ControlTest.cs: Improved DoubleBufferedTest.
- 2006-12-28 Chris Toshok <[email protected]>
- * ControlTest.cs: add a test to check whether parent.PerformLayout
- is called from OnResized (it isn't).
- * DefaultLayoutTest.cs: new file, add a bunch of anchor tests,
- including the (not working) test case in bug #80336. Move the
- docking/undocking tests here.
- 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: More tests for double buffers.
-
- 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Added double buffering tests.
- 2006-12-27 Gert Driesen <[email protected]>
- * ControlTest.cs: Added DoubleBuffered test. Added IsHandleCreated
- test for invisible control.
- 2006-12-27 Gert Driesen <[email protected]>
- * MonthCalendarTest.cs: Fixed exception tests for MaxSelectionCount,
- MaxDate and MinDate on 2.0 profile. Removed extra tabs.
- 2006-12-27 Jonathan Pobst <[email protected]>
- * ToolStripButtonTest.cs, ToolStripComboBoxTest.cs, ToolStripControlHostTest.cs,
- ToolStripItemTest.cs, ToolStripLabelTest.cs, ToolStripProgressBarTest.cs,
- ToolStripSeparatorTest.cs, ToolStripTest.cs, ToolStripTextBoxTest.cs: Added.
- 2006-12-27 Rolf Bjarne Kvinge <[email protected]>
- * MonthCalendarTest.cs: Added test for Click and DoubleClick events.
-
- 2006-12-27 Gert Driesen <[email protected]>
- * ScrollableControlTest.cs: Added tests for AutoScroll and
- AutoScrollMinSize.
- 2006-12-26 Gert Driesen <[email protected]>
- * ComboBoxTest.cs: Improved tests for DropDownWidth and ItemHeight.
- 2006-12-26 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: Added NotWorking test for DoubleBuffered.
- 2006-12-26 Gert Driesen <[email protected]>
- * DataGridViewCellStyleTest.cs: Added tests for FormatProvider,
- IsFormatProviderDefault.
- * DataGridViewTest.cs: Reworked ColumnCount, ColumnHeadersHeight,
- RowHeaderWidth tests. Added DefaultSize, *DefaultCellStyle tests.
- 2006-12-23 Gert Driesen <[email protected]>
- * DateTimePickerTest.cs: Fixed line endings.
- * upDownTest.cs: Added tests for BeginInit, EndInit, UpButton, Value.
- 2006-12-23 Daniel Nauck <[email protected]>
- * UserControlTest.cs: Add.
- 2006-12-23 Gert Driesen <[email protected]>
- * ControlTest.cs: Enabled test for bug #80280.
- 2006-12-21 Gert Driesen <[email protected]>
- * RichTextBoxTest.cs: Added test for bug #80301.
- * TextBoxTest.cs: Added test for bug #80301.
- 2006-12-21 Daniel Nauck <[email protected]>
- * ComboBoxTest.cs,
- TextBoxTest.cs: Added AutoComplete property tests.
- 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
-
- * DateTimePickerTest.cs: Created.
-
- 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
- * MonthCalendarTest.cs:
- - Enable tests again.
- - Added tests for *BoldedDates.
-
- * ControlTest.cs: Added test for BackgroundImageLayout.
-
- 2006-12-19 Chris Toshok <[email protected]>
- * DataGridViewBandTest.cs: nuke this file, as there's no way to
- construct a DataGridViewBand in isolation (exception through
- reflection).
- 2006-12-19 Chris Toshok <[email protected]>
- * RowStyleTest.cs: unit tests for RowStyle.
- * ColumnStyleTest.cs: unit tests for ColumnStyle.
- 2006-12-19 Carlos Alberto Cortez <[email protected]>
- * ListViewCollectionsTest.cs: Added tests for the new 2.0
- methods and properties (SelectedIndexCollection,
- SelectedItemCollection, and ListViewSubItemCollection).
- * ListViewItemTest.cs: Added test for ImageKey 2.0 property.
- 2006-12-19 Gert Driesen <[email protected]>
- * ListViewItemTest.cs: Added tests for ListViewSubItemCollection's
- AddRange overloads.
- * TreeViewTest.cs: Fixed ExpandAll tests.
- 2006-12-19 Daniel Nauck <[email protected]>
- * ApplicationTest.cs: Restart () test is 2.0 only.
- 2006-12-19 Daniel Nauck <[email protected]>
- * ApplicationTest.cs: Added test for Restart ().
- 2006-12-18 Rolf Bjarne Kvinge <[email protected]>
- * MonthCalendarTest.cs: Added test for DefaultMargin.
- 2006-12-18 Daniel Nauck <[email protected]>
- * DataGridViewAdvancedBorderStyleTest.cs,
- DataGridViewRowTest.cs,
- DataGridViewElementTest.cs,
- DataGridViewCellTest.cs,
- DataGridViewCellStyleTest.cs,
- DataGridViewTest.cs: fixed NUnit obsolete warnings and
- DataGridView tests against .NET 2.0
- 2006-12-17 Daniel Nauck <[email protected]>
- * ButtonTest.cs: Added tests for FlatButtonAppearance.
- 2006-12-17 Gert Driesen <[email protected]>
- * TreeViewTest.cs: Added tests for bug #80284.
- 2006-12-17 Gert Driesen <[email protected]>
- * ControlTest.cs: Added (notworking) test for bug #80280.
- Removed extra tabs.
- 2006-12-16 Andreia Gaita <[email protected]>
-
- * TabControlTest.cs: Fixed SelectedIndex tests
- for MS.NET 2.0
- 2006-12-16 Andreia Gaita <[email protected]>
- * SendKeysTest.cs: Test cases for SendKeys
- These tests can only run in ms.net one at a time.
- Since ms.net apparently hooks the keyboard to
- implement this, running two tests in a row
- makes the second test run before the hook
- of the first test is released, effectively
- hanging the keyboard. CTRL-ALT-DEL releases
- the keyboard, but the test still hangs.
- Running each test separately works.
-
- 2006-12-16 Daniel Nauck <[email protected]>
- * AutoCompleteStringCollectionTest.cs: new tests for AutoCompleteStringCollection.
- 2006-12-16 Daniel Nauck <[email protected]>
- * PaddingTest.cs: new tests for Padding.
- 2006-12-15 Daniel Nauck <[email protected]>
- * ListViewCollectionsTest.cs: test works now on the 1.1 profile.
- * ListViewItemTest.cs: add new ListViewSubItem text property test.
- 2006-12-15 Daniel Nauck <[email protected]>
- * ListViewCollectionsTest.cs: new not working junk add test for ListViewItemCollection
- 2006-12-15 Daniel Nauck <[email protected]>
- * ListViewCollectionsTest.cs: new ListViewItemCollection AddRange tests
- 2006-12-15 Daniel Nauck <[email protected]>
- * ListViewCollectionsTest.cs: new ListViewItemCollection indexer test for #80199.
- 2006-12-15 Daniel Nauck <[email protected]>
- * ListViewGroupTest.cs: new tests for ListViewGroups.
- * ListViewGroupCollectionTest.cs: new tests for ListViewGroupCollections.
- 2006-12-14 Gert Driesen <[email protected]>
- * TabControlTest.cs: Added tests for Control.RemoveAt.
- 2006-12-13 Carlos Alberto Cortez <[email protected]>
- * ListViewItemTest.cs:
- * ListViewCollectionsTest.cs: Add tests for the new 2.0
- ListViewItemCollection methods (IndexOfKey, ContainsKey,
- new indexer overload, Find, RemoveByKey).
- 2006-12-13 Gert Driesen <[email protected]>
- * TextBoxTest.cs: Added test for bug #80163.
- 2006-12-13 Gert Driesen <[email protected]>
- * ControlTest.cs: Improved Region test.
- 2006-12-12 Andreia Gaita <[email protected]>
- * ControlTest.cs: Add region tests.
- 2006-12-12 Rolf Bjarne Kvinge <[email protected]>
- * ControlTest.cs: add tests for WM_PARENTNOTIFY.
-
- 2006-12-11 Chris Toshok <[email protected]>
- * ControlTest.cs: add some unit tests for null parameters to some
- of the ControlCollection methods.
- 2006-12-11 Gert Driesen <[email protected]>
- * ControlTest.cs: Added test for invalid Dock value.
- 2006-12-11 Andreia Gaita <[email protected]>
- * TabControlTest.cs: add tests to check if SelectedIndex is
- properly set if the TabControl has no pages, before and
- after the handle is created
- 2006-12-10 Chris Toshok <[email protected]>
- * ColumnClickEventArgsTest.cs: new tests.
- 2006-12-10 Gert Driesen <[email protected]>
- * TabControlTest.cs: Added SelectedIndex tests.
- 2006-12-08 Chris Toshok <[email protected]>
- * ButtonTest.cs: add tests for DialogResult changes when setting
- Form.AcceptButton and Form.CancelButton.
- 2006-12-08 Chris Toshok <[email protected]>
- * MenuItemTest.cs: add test for menu item events when cloning menu
- items. Tests for the bug in #80183.
- 2006-12-06 Chris Toshok <[email protected]>
- * FormTest.cs: make sure Form.ImeMode is NoControl by default.
- * ButtonTest.cs: add a unit test for Button.DefaultImeMode.
- 2006-12-06 Chris Toshok <[email protected]>
- * RadioButtonTest.cs: add a couple of test involving TabStop.
- 2006-12-06 Chris Toshok <[email protected]>
- * ImageListTest.cs: add a rather complicated series of assertions
- about the imagelist ShouldSerialize/CanReset methods. these pass
- on MS and mono now, though. yay.
- 2006-12-06 Jackson Harper <[email protected]>
- * TextBoxTest.cs: Add a test for Modified property.
- - We need to put something on the clipboard before we can paste.
- 2006-12-04 Jackson Harper <[email protected]>
- * TextBoxTest: More of these tests work now.
- - Add a test to ensure that recieving focus selects all of the
- text
- 2006-12-04 Chris Toshok <[email protected]>
- * PrintDialogTest.cs: add [Category("Printing")] to all these
- tests so I can exclude them.
- 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
- * StatusBarPanelTest.cs: Added a test for invalid
- minimum widths.
-
- 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Change a few tests to dispose of
- the form when the test is finished.
- 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Added a few NotWorking tests for
- initial form location.
- 2006-12-04 Everaldo Canuto <[email protected]>
- * LabelTest.cs: Add tests for sizes, test for bug #80137.
- 2006-12-01 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: All current NotWorking tests are now
- working, added a few more tests.
- 2006-12-01 Gert Driesen <[email protected]>
- * CurrencyManagerTest.cs: Added test for bug #80107.
- 2006-12-01 Gert Driesen <[email protected]>
- * DataGridTest.cs: Fixed build.
- 2006-12-01 Gert Driesen <[email protected]>
- * DataGridTest.cs: Added tests for Font, CaptionFont and HeaderFont.
- 2006-12-01 Everaldo Canuto <[email protected]>
- * MenuTest.cs: Tag property assert for 2.0 profile.
-
- 2006-11-30 Everaldo Canuto <[email protected]>
- * ToolBarTest.cs:
- - Remove ButtonSize.Width and ButtonSize.Height assert because
- it depends of system metrics and diferent fonts can cause
- diferent sizes.
- - Remove "NotWorking" mark from ToolBarPropertyTest, this test
- now must works well.
-
- 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
- * MessageTest.cs: Added test for ToString.
-
- 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
- * MdiFormTest.cs: Text_ChildClose is no longer NotWorking.
-
- 2006-11-30 Gert Driesen <[email protected]>
- * MenuItemTest.cs: Added test for Text property.
- 2006-11-29 Chris Toshok <[email protected]>
- * BindingTest.cs: add two new tests.
- 2006-11-28 Rolf Bjarne Kvinge <[email protected]>
- * TrackBar.cs: Changed SizeTest and OrientationTest
- to work on MS with both WinXP theme and Win2K theme.
- 2006-11-26 Gert Driesen <[email protected]>
- * MdiFormTest.cs: Fixed test on (MS) 2.0 profile.
- 2006-11-26 Gert Driesen <[email protected]>
- * ControlStylesTest.cs: Fixed GetStyle for 2.0 profile.
- 2006-11-26 Gert Driesen <[email protected]>
- * FormTest.cs: Added test for bug #80052.
- 2006-11-25 Gert Driesen <[email protected]>
- * MdiFormTest.cs: Added test for bug #80036.
- 2006-11-24 Gert Driesen <[email protected]>
- * MdiFormTest.cs: Added NotWorking test for Form.Text.
- 2006-11-23 Gert Driesen <[email protected]>
- * FormTest.cs: Added test for bug #80020.
- * MdiFormTest.cs: Fixed typo, added additonal info.
- 2006-11-23 Gert Driesen <[email protected]>
- * MdiFormTest.cs: Improved Text test to also verify behavior when
- Text of MDI child or container is empty. Added NotWorking test for
- Text after MDI is maximized. Added comment with existing NotWorking
- test for ActiveMdiChild.
- 2006-11-23 Gert Driesen <[email protected]>
- * ToolBarTest.cs: Added test for bug #79863. Fixed and enabled
- ToStringTest.
- 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
-
- * ControlTest.cs: Added tests for #79999.
- 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
-
- * MdiFormTest.cs: Added tests for WindowState (mdi
- children) and Text (mdi parent with maximized mdi
- children).
- 2006-11-13 Gert Driesen <[email protected]>
- * ControlEventTest.cs: Added tests for Invalidated event.
- * TreeNodeCollectionTest.cs: Added IList indexer tests.
- 2006-11-12 Gert Driesen <[email protected]>
- * TextBoxTest.cs: Added (NotWorking) test for bug #79909.
- 2006-11-11 Gert Driesen <[email protected]>
- * TreeViewTest.cs: Added (NotWorking) tests for BeforeSelect event.
- 2006-11-09 Gert Driesen <[email protected]>
- * ListViewEventTest.cs: Added tests for SelectedIndexChanged event.
- * UpDownTest.cs: Fixed ToStringTest.
- 2006-11-09 Alexander Olk <[email protected]>
- * CommonDialogsTest.cs: Added
- 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
- * StatusBarPanelTest.cs: Added tests for bug #79842
- and tests for default properties.
- 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
- * TrackBarTest.cs: Added tests for bug #79718.
-
- 2006-11-08 Gert Driesen <[email protected]>
- * TextBoxTest.cs: Added test for bug #79851.
- 2006-11-07 Gert Driesen <[email protected]>
- * TabControlTest.cs: Added test for bug #79847.
- 2006-11-04 Chris Toshok <[email protected]>
- * ControlTest.cs: enable a bunch more of these on linux, and split
- out problematic areas into smaller NotWorking tests.
- 2006-11-04 Chris Toshok <[email protected]>
- * FormTest.cs: add a few more tests to determine various aspects
- of the Close() method.
- 2006-11-04 Chris Toshok <[email protected]>
- * FormTest.cs: add a test to more accurately test for bug #79155
- (make sure an ObjectDisposedException is thrown if you Show() a
- Form you just Close()'d).
- 2006-11-04 Gert Driesen <[email protected]>
- * TreeNodeCollectionTest.cs: Added tests for TreeNodeCollection.
- 2006-11-04 Gert Driesen <[email protected]>
- * ComboBoxTests.cs: Moved to correct namespace. Added test for bug
- #79812. Added (NotWorking) SelectedText tests.
- 2006-11-01 Gert Driesen <[email protected]>
- * TextBoxTest.cs: Added tests for part of bug #79799.
- 2006-11-01 Gert Driesen <[email protected]>
- * ControlTest.cs: Fixed build using csc 1.x.
- 2006-10-30 Alexander Olk <[email protected]>
- * PictureBoxTest.cs: Enable the previously not working
- ToStringMethodTest and move the not working Image property
- test to its own method.
- * UpDownTest.cs: Added
- 2006-10-29 Chris Toshok <[email protected]>
- * ControlTest.cs: correct namespace and add TopLevelControlTest
- for bug #79781.
- 2006-10-29 Alexander Olk <[email protected]>
- * FormTest.cs: Fix typo.
- 2006-10-13 Gert Driesen <[email protected]>
- * PropertyGridTest.cs: Enabled previously not-working tests.
- 2006-10-13 Gert Driesen <[email protected]>
- * PropertyGridTest.cs: Added some tests for PropertyGrid.
- 2006-10-13 Andreia Gaita <[email protected]>
- * FocusTest.cs: add more test cases for GetNextControl.
- see #78650
- 2006-10-11 Chris Toshok <[email protected]>
- * ToolBarTest.cs: add test for ToolBarButton rectangles.
- 2006-10-06 Gert Driesen <[email protected]>
- * ListViewCollectionsTest.cs: Added tests for bug #79415.
- * ListViewTest.cs: Enabled test for bug #79416.
- 2006-10-03 Sebastien Pouliot <[email protected]>
- * ContainerControlTest.cs: New. Add a few test cases for
- GetContainerControl method.
- 2006-10-02 Sebastien Pouliot <[email protected]>
- * ButtonTest.cs: Activate tests for ButtonBaseAccessibleObject.
- 2006-10-02 Sebastien Pouliot <[email protected]>
- * ButtonTest.cs: Added new test cases for ButtonBaseAccessibleObject
- as NonWorking (see bug #79552). Fixed line-endings.
- 2006-09-22 Sebastien Pouliot <[email protected]>
- * SystemInformationTest.cs: Add tests case for MenuFont.
- 2006-09-18 Jonathan Pobst <[email protected]>
- * EventArgsTest.cs: Add tests for ToolStrip*EventArgs.
- 2006-09-13 Jonathan Pobst <[email protected]>
- * SplitContainerTests.cs: Added.
- 2006-09-11 Gert Driesen <[email protected]>
- * ListViewTest.cs: Added test for bug #79076. Added tests for
- sorting bug fixes. Added tests for CheckBoxes and MultiSelect (marked
- NotWorking).
- * ListViewCollectionsTest.cs: Added tests for SelectedItemCollection
- and ListViewItemCollection fixes.
- 2006-09-01 Carlos Alberto Cortez <[email protected]>
- * ComboBoxTest.cs: Add tests for sorting and selection handling.
- Deal with a couple of exception mismatches in 2_0.
- 2006-08-21 Carlos Alberto Cortez <[email protected]>
- * ComboBoxTest.cs: Add tests for CB.ObjectCollection
- methods throwing ArgumentNullException.
- 2006-08-18 Carlos Alberto Cortez <[email protected]>
- * ComboBoxTest.cs: Add tests for adding/modifying null items
- in ObjectCollection.
- * ListBox.cs: Likewise.
- 2006-08-08 Chris Toshok <[email protected]>
- * GridTableStylesCollectionTest.cs: make this fixture public so
- it's actually included, and add a test for changing the
- MappingName of a constituent TableStyle.
- 2006-07-30 Carlos Alberto Cortez <[email protected]>
- * PrintDialogTest.cs: Added.
- 2006-07-21 Matt Hargett ([email protected])
- * ControlTest.cs: Added tests for MinimumSize/MaximumSize
- 2006-07-20 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs: Added DataSourceWrongArgumentType method
- to test the exception being thrown.
- 2006-07-18 Carlos Alberto Cortez <[email protected]>
- * ListControlTest.cs: Added.
- 2006-07-14 Jonathan Pobst <[email protected]>
- * EventArgsTest.cs: Added
- 2006-07-10 Chris Toshok <[email protected]>
- * DataGridTest.cs: make this class public so it shows up in the
- list of fixtures (and its tests get run).
- * CurrencyManagerTest.cs: add a test that just spews properties
- about the currency manager and the datasource, as well as a test
- for the finalType field.
- 2006-07-07 Chris Toshok <[email protected]>
- * DataGridTableStyleTest.cs: couple more tests.
- 2006-07-06 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Added "LinkLabel with link" test
- 2006-06-30 Chris Toshok <[email protected]>
- * DataGridTableStyleTest.cs: add a bunch of mirrored tests for the
- default DataGridTableStyle.
- 2006-06-23 Chris Toshok <[email protected]>
- * PropertyManagerTest.cs: new tests regarding the
- [Related]PropertyManager class.
- 2006-06-19 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Added tests for enabled state inheritance
- 2006-06-19 Chris Toshok <[email protected]>
- * CurrencyManagerTest.cs: add some tests for related currency
- managers.
- * BindingContextTest.cs: add a test for
- BindingContext.CollectionChanged -=. Also add a test for passing
- null for data_member to BindingContext.Contains.
- 2006-06-06 Carlos Alberto Cortez <[email protected]>
- * FormTest.cs: Add SetDialogResult, to test Form.DialogResult
- setter.
- 2006-06-01 Chris Toshok <[email protected]>
- * CurrencyManagerTest.cs: add a few tests to see what events are
- being emitted in which order from AddNew, CancelCurrentEdit and
- EndCurrentEdit.
- 2006-05-31 Peter Dennis Bartok <[email protected]>
- * LabelTest.cs:
- - Added (still unused) fuzzy compare for events
- - Disabled event order tests, they are too strict
- * ScrollBarTest.cs: Disabled event order tests, are too strict
- 2006-05-25 Jackson Harper <[email protected]>
- * TreeViewTest.cs: Add a couple of default properties. Put in
- correct namespace.
- * TabControlTest.cs: Put in correct namespace.
- 2006-05-25 Atsushi Enomoto <[email protected]>
- * BindingContextTest.cs : added more tests for Item, Contains()
- and GetEnumerator().
- 2006-05-18 Sebastien Pouliot <[email protected]>
- * PaintEventArgsTest.cs: New. Unit tests for PaintEventArgs.
- 2006-05-18 Atsushi Enomoto <[email protected]>
- Some compat fixes found by make run-test-ondotnet:
- * ListBoxTest.cs : they don't throw exceptions.
- * RichTextBoxTest.cs,
- ScrollBarTest.cs,
- ComboBoxTest.cs,
- ComboBoxTests.cs : Commented some lines out since they are
- environment (especially desktop theme) dependent.
- TabControlTest.cs : SetSelectedIndex() was my bad that the test
- needed the tab control be drawn to pass the test.
- Some tests are env. dependent (as well as others).
- 2006-05-16 Miguel de Icaza <[email protected]>
- * DataGridTest.cs: Add a test case based on 78420, confirm that
- the fix works.
- 2006-05-15 Atsushi Enomoto <[email protected]>
- * TabControlTest.cs : added test for bug #78395.
- 2006-04-16 Gert Driesen <[email protected]>
- * TabControlTest.cs: Added test for bug #78121. Marked failing tests
- NotWorking. Set eol-style to native.
- 2006-04-12 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Added backcolor tests related to transparency
- (bug #78026)
- 2006-03-31 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Ignore Invoke test, it hangs
- 2006-02-28 Matt Hargett ([email protected])
- * ComboBoxTests.cs: Added
- 2006-02-02 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Added test for layout nesting
- * MonthCalendarTest.cs: Fixed typo in class name
- 2005-12-01 Jackson Harper <[email protected]>
- * TreeNodeTest.cs: TreeNodeTest.cs : Added namespace +
- SingleNodeIndexTest.
- - Fixed warning CS0219. Patches by Dieter Bremes
- 2005-11-12 Pedro Martínez Juliá <[email protected]>
- * DataGridViewElementTest.cs DataGridViewBandTest.cs
- DataGridViewCellTest.cs DataGridViewAdvancedBorderStyleTest.cs
- DataGridViewCellStyleTest.cs DataGridViewRowTest.cs DataGridViewTest.cs:
- Add some DataGridView tests.
- 2005-11-11 Ankit Jain <[email protected]>
- * RichTextBoxTest.cs: Fix typos.
- 2005-11-09 Peter Dennis Bartok <[email protected]>
- * RichTextBoxTest.cs: Added Find() tests
- 2005-11-05 Kornél Pál <[email protected]>
- * LabelPropertyTest.cs: Updated product version to 1.1.4322.2032 (1.1 SP1).
- 2005-10-18 Jordi Mas i Hernandez <[email protected]>
- * ListViewCollectionsTest.cs: Add tests for the ListView Collections
- 2005-10-17 Ritvik Mayank <[email protected]>
- * TabControlTest.cs : Added test case for TabControl
- 2005-10-16 Ritvik Mayank <[email protected]>
- * TrackBarTest.cs : Added test case for TrackBar
- 2005-10-16 Jordi Mas i Hernandez <[email protected]>
-
- * DataGridBoolColumn.cs: fixes warning
- 2005-10-10 Peter Dennis Bartok <[email protected]>
- * GenerateControlStyleTest.cs, ControlStyleTest.cs: Flipped
- order for want and actual to avoid misleading errors
- 2005-10-07 Peter Dennis Bartok <[email protected]>
- * GenerateControlStyleTest.cs: Code to auto-generate the
- source file ControlStyleTest.cs
- * ControlStyleTest.cs: Tests for testing ControlStyles
- 2005-09-28 Hisham Mardam Bey <[email protected]>
- * Common.cs : Add common things here.
- * LabelTest.cs : Remove common declarations to Common.cs
- * ScrollBarTest.cs : Remove common declarations to Common.cs
- Add more propery range / exception tests
- Add more event order tests
- Fix Mouse tests.
- Add event arg tests.
- 2005-09-27 Hisham Mardam Bey <[email protected]>
- * LabelTest.cs : Added more event tests (external handlers)
- Added event arg checks
- Fixed OnPaint tests.
- Seperated invalidation tests.
- 2005-09-26 Hisham Mardam Bey <[email protected]>
- * ScrollBarTest.cs : Add more tests for event firing order
- Messages to simulate mouse events
- 2005-09-23 Ritvik Mayank <[email protected]>
- * ErrorProviderTest.cs : Added test case for ErrorProvider
- 2005-09-23 Hisham Mardam Bey <[email protected]>
- * LabelTest.cs : Added messages to simulate Key* events.
- Key* events have tests now.
- 2005-09-22 Hisham Mardam Bey <[email protected]>
- * LabelTest.cs : Implement event firing order tests.
- * ScrollBarTest.cs : Implement event firing order tests.
- 2005-09-22 Jordi Mas i Hernandez <[email protected]>
-
- * MenuTest.cs: Fixes some tests
- * MenuItemTest.cs: New unit test
- 2005-09-21 Hisham Mardam Bey <[email protected]>
- * LabelTest.cs : Several new tests.
- * ScrollBarTest.cs : Several new tests.
- * bitmaps : added dir containing images for tests.
- 2005-09-21 Jordi Mas i Hernandez <[email protected]>
- * ListViewItemTest.cs: New unit test
- 2005-09-20 Jordi Mas i Hernandez <[email protected]>
- * ButtonTest.cs, LabelTest.cs, ControlEventTest.cs, ScrollBarTest.cs,
- LabelPropertyTest.cs, ProgressBarTest.cs, StatusBarTest.cs,
- ImageListTest.cs, MonthCalendarTest.cs, ControlTest.cs,
- ListBoxEventTest.cs, TreeViewTest.cs, TestImageIndexConverter.cs,
- ToolBarTest.cs, MenuTest.cs
- Remove all the tests that are giving errors. All of them should
- be reviewed. Right now having this text throwing 40 errors do not
- help at all to do regression testing. Peter has already assigned
- a group of controls to every developer that will be tested and
- reviewed.
- 2005-09-20 Ritvik Mayank <[email protected]>
- * PictureBoxTest.cs : Test case for PictureBox
- 2005-09-08 Ritvik Mayank <[email protected]>
- * MonthCalendarTest.cs : Test case for MonthCalendar
- 2005-08-29 Ritvik Mayank <[email protected]>
-
- * ProgressBarTest.cs : Test case for ProgressBar
- * ToolBarTest.cs : Test case for ToolBar
- * ToolTipTest.cs : Test case for ToolTip
- * RichTextBoxTest.cs : Test case for RichTextBox
- 2005-08-16 Martin Baulig <[email protected]>
- * ControlTest.cs: Renamed namespace `MWF.Test' -> `MWF.MonoTest'
- to make it compile.
- 2005-08-16 Ritvik Mayank <[email protected]>
-
- * ScrollBarTest.cs, ImageListTest.cs, CheckedListBoxTest.cs, CheckedListBoxEventTest.cs, MenuTest.cs,
- ListViewTest.cs: enhancement and cleanup
- 2005-08-16 Ritvik Mayank <[email protected]>
- * ImageListTest.cs : Test case for ImageList
- * RadioButtonTest.cs : Test case for RadioButton
- * ScrollBarTest.cs : Test case for ScrollBar
- * StatusBatTest.cs : Test case for StatusBar
- 2005-08-10 Ritvik Mayank <[email protected]>
- * ControlTest.cs : Commented out test for GetChildAtPointSkip (feature not
- yet implemented)
- 2005-08-08 Jordi Mas i Hernandez <[email protected]>
- * ComboBoxTest.cs: new tests for properties, exceptions, and colletions
- * ListBoxTest.cs: new tests for properties, exceptions, and colletionss
- 2005-08-06 Ritvik Mayank <[email protected]>
- * ComboBoxTest.cs, ListBoxTest.cs : Cleanup, added few more tests
- 2005-08-05 Ritvik Mayank <[email protected]>
- * ButtonTest.cs, ImageListTest.cs, ControlEventTest.cs,
- LabelPropertyTest.cs, CheckBoxTest.cs, ListBoxEventTest.cs,
- CheckBoxEventTest.cs, CheckedListBoxTest.cs, TextBoxTest.cs,
- CheckedListBoxEventTest.cs, FormTest.cs, MenuTest.cs,
- FormEventTest.cs, GroupBoxTest.cs, ListViewTest.cs,
- ListViewEventTest.cs :
- Cleanup, Ignored tests which need manual intervention,
- work still in progress.
-
- 2005-08-05 Jordi Mas i Hernandez <[email protected]>
- * DataGridTextBoxColumnTest.cs: test fixes and enhancements
- * GridTableStylesCollectionTest.cs: test fixes and enhancements
- * DataGridTest.cs: test fixes and enhancements
- * DataGridCellTest.cs: New unit test
- * GridColumnStylesCollectionTest.cs: test fixes and enhancements
- * DataGridTableStyleTest.cs: test fixes and enhancements
- 2005-08-04 Peter Dennis Bartok <[email protected]>
- * ControlTest.cs: Cleanup, fixed commented out tests with syntax
- errors, streamlined a few tests, added full tab order test, still
- work in progress
- 2005-08-02 Ritvik Mayank <[email protected]>
-
- * FormTest.cs : Test case for Form
- * GropBoxTest : Test case for GroupBox
- * MenuTest.cs : Test case for Menu
- * ImageListTest.cs : Test case for ImageList
- 2005-07-26 Ritvik Mayank <[email protected]>
-
- * ListViewTest.cs : Test case for ListView
- * ListViewEventTest.cs : Test case for ListView events
- * ComboBoxTest.cs : Test case for ComboBox
- * FormEventTest.cs : Test case for Form events
- 2005-07-12 Ritvik Mayank <[email protected]>
-
- * CheckBoxTest.cs : Test case for CheckBox
- * CheckBoxEventTest.cs : Test case for CheckBox events
- * CheckedListBoxTest.cs : Test case for CheckedListBox
- * CheckedListBoxEventTest.cs : Test case for CheckedListBox events
- 2005-07-05 Jordi Mas i Hernandez <[email protected]>
- * DataGridTextBoxColumnTest.cs: Test case
- * GridTableStylesCollectionTest.cs: Test case
- * DataGridTest.cs: Test case
- * GridColumnStylesCollectionTest.cs: Test case
- * DataGridTableStyleTest.cs: Test case
- 2005-07-04 Ritvik Mayank <[email protected]>
-
- * ListBoxTest.cs : Test Cases for ListBox Properties and Methods
- * ListBoxEventTest.cs : Test Cases for ListBox Events
- 2005-06-13 Ritvik Mayank <[email protected]>
-
- * TextBoxTest.cs : Test Cases for TextBox
- * BUttonTest.cs : Test Cases for Buttons
- 2005-05-11 Ritvik Mayank <[email protected]>
-
- * ControlEventTest.cs : Test Cases for Events
-
- 2005-05-02 Ritvik Mayank <[email protected]>
- * ControlTest.cs : Minor modifications
- 2005-05-02 Ritvik Mayank <[email protected]>
-
- * ControlTest.cs : Test for Control
- 2005-04-25 Ritvik Mayank <[email protected]>
- * LabelPropertyTest.cs : Test for Label
- 2004-11-29 Marek Safar <[email protected]>
- * TreeViewTest.cs : Test for TreeView
- * TreeNodeTest.cs : Test for TreeNode
- 2004-11-29 Ravindra <[email protected]>
- * ImageIndexConverter.cs : Test for ImageIndexConversion.
-
|