ChangeLog 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978
  1. 2008-11-24 Jonathan Pobst <[email protected]>
  2. * DataGridViewDataBindingTest.cs: Flush and add test for bug #448005.
  3. * DataGridViewRowCollectionTest.cs: Add test for bug #448005.
  4. 2008-11-23 Jonathan Pobst <[email protected]>
  5. * FormTest.cs: Add test for bug #447873.
  6. 2008-11-20 Jonathan Pobst <[email protected]>
  7. * ToolStripItemTest.cs: Add test to ensure we don't crash when
  8. ImageIndex refers to a non-existant index.
  9. 2008-11-18 Jonathan Pobst <[email protected]>
  10. * DataGridViewColumnCollectionTest.cs: Add test to ensure we re-index
  11. columns after modifying the collection.
  12. 2008-11-17 Jonathan Pobst <[email protected]>
  13. * DataGridViewTest.cs: Add a test showing how RowTemplate works.
  14. 2008-11-01 Jonathan Pobst <[email protected]>
  15. * DataGridViewRowCollectionTest.cs: Add some tests for bug #442181.
  16. 2008-11-11 Andreia Gaita <[email protected]>
  17. * TestHelper.cs: Inconsistent eol fixes and eol-style
  18. 2008-11-11 Andreia Gaita <[email protected]>
  19. * FocusTest.cs, FormTest.cs, FormEventTest.cs: Enable tests that depend on
  20. synchronous WM_ACTIVATE messages and are now working with the latest
  21. message fixes
  22. 2008-11-07 Jonathan Pobst <[email protected]>
  23. * DefaultLayoutTest.cs: Add some tests from Jonathan Anderson
  24. for bug #439479.
  25. 2008-11-06 Jonathan Pobst <[email protected]>
  26. * DefaultLayoutTest.cs: Add some tests from Jonathan Anderson
  27. for bug #439443.
  28. 2008-11-03 Jonathan Pobst <[email protected]>
  29. * ProgressBarTest.cs: Add new tests provided by Andy Hume. See
  30. bug #440220.
  31. 2008-11-03 Jonathan Pobst <[email protected]>
  32. * FormTest.cs: Add test for bug #438866.
  33. 2008-10-31 Andreia Gaita <[email protected]>
  34. * TestHelper.cs: Remove extraneous debug message
  35. 2008-10-31 Andreia Gaita <[email protected]>
  36. * TestHelper.cs: Add virtual setup and teardown methods. Any forms left
  37. hanging around after a test will be disposed here so that they don't
  38. clutter up the screen while the tests are running.
  39. * *.cs: All tests now inherit from TestHelper so that the setup and
  40. teardown routines are always called (barring one or two that already
  41. inherit from swf classes that needs to be fixed)
  42. 2008-10-19 Andreia Gaita <[email protected]>
  43. * tests2.sh: Remove extra echos
  44. 2008-10-19 Andreia Gaita <[email protected]>
  45. * FormTest.cs: Fix failing test on .NET/Win
  46. 2008-10-19 Andreia Gaita <[email protected]>
  47. * FormTest.cs: Forms that get closed without a handle being created are
  48. disposed in 2.0. Fixes failing FormTest.FormClose and
  49. FormTest.FormClose2 on windows.
  50. 2008-10-18 Andreia Gaita <[email protected]>
  51. * tests2.sh: Some useful test options, see usage (default behaviour
  52. remains the same)
  53. 2008-10-17 Jonathan Pobst <[email protected]>
  54. * ComboBoxTest.cs: Add test for bug #436328.
  55. 2008-10-15 Ivan N. Zlatev <[email protected]>
  56. * TimerTest.cs: Enabling test case for bug #325033, because it's
  57. fixed.
  58. 2008-10-14 Gert Driesen <[email protected]>
  59. * ImageListTest.cs: Improved test for ICollection.CopyTo.
  60. 2008-09-30 Jonathan Pobst <[email protected]>
  61. * TreeNodeTest.cs: Test for ImageKey/ImageIndex plus flush some tests
  62. sitting in my local tree.
  63. 2008-09-28 Carlos Alberto Cortez <[email protected]>
  64. * DragAndDropTest.cs: Simplify some of the helper code, as well as
  65. adding a new test for dnd operations without mouse movement.
  66. 2008-09-24 Jonathan Pobst <[email protected]>
  67. * ControlTest.cs: Add test for bug #386450.
  68. 2008-09-22 Carlos Alberto Cortez <[email protected]>
  69. * ListViewItemTest.cs: New test for public ctor of
  70. ListViewSubItemCollection.
  71. 2008-09-19 Carlos Alberto Cortez <[email protected]>
  72. * BindingTest.cs: New test for data source looking for a data source
  73. property with a *specific* value type, more specific than just the
  74. property type.
  75. 2008-09-19 Carlos Alberto Cortez <[email protected]>
  76. * ListControlTest.cs: New test for testing that FormattingEnabled,
  77. FormatString and FormatInfo property changes *actually* cause a call
  78. to RefreshItems.
  79. 2008-09-18 Carlos Alberto Cortez <[email protected]>
  80. * BindingTest.cs: New test for empty string passed as property.
  81. 2008-09-16 Carlos Alberto Cortez <[email protected]>
  82. * BindingTest.cs: New .ctor asertion for DataSourceNullValue default
  83. value.
  84. 2008-09-15 Jonathan Pobst <[email protected]>
  85. * CheckedListBoxTest.cs, ListBoxTest.cs: Add some tests from Andy
  86. Hume for bug #426166.
  87. 2008-09-11 Jonathan Pobst <[email protected]>
  88. * ListViewCollectionsTest.cs: Add test for bug #425342.
  89. 2008-09-08 Jonathan Pobst <[email protected]>
  90. * ComboBoxTest.cs: Add test for bug #424270.
  91. 2008-09-04 Carlos Alberto Cortez <[email protected]>
  92. * BindingTest.cs: New test for nested properties using a DataSet.
  93. 2008-09-04 Carlos Alberto Cortez <[email protected]>
  94. * BindingTest.cs: New tests for multiple nested properties in the
  95. data source, by Andy Hume.
  96. 2008-08-26 Jonathan Pobst <[email protected]>
  97. * ErrorProviderTest.cs: Add test for bug #420305.
  98. 2008-08-24 Carlos Alberto Cortez <[email protected]>
  99. * ListControlTest.cs: Add a container for a mock item, to test
  100. multiple nested properties.
  101. * BindingContextTest.cs: New test for the overload of the indexer
  102. taking a data source with a data member (including nested properties,
  103. or multiple objects, as msdnstates).
  104. 2008-08-24 Gert Driesen <[email protected]>
  105. * ListBoxTest.cs: Added tests for SetItemsCore. Added and improved tests
  106. for ObjectCollection. Added tests for IntegerCollection.
  107. 2008-08-23 Gert Driesen <[email protected]>
  108. * ControlTest.cs: Added .ctor tests.
  109. 2008-08-19 Jonathan Pobst <[email protected]>
  110. * LinkLabelTest.cs: Add test for bug #410709.
  111. 2008-08-02 Gert Driesen <[email protected]>
  112. * FormEventTest.cs: Modified several tests to no longer require manual
  113. intervention. Added/improved tests for Form events.
  114. 2008-07-31 Carlos Alberto Cortez <[email protected]>
  115. * ListBindingHelperTest.cs: New test for GetList receiving an IEnumerable
  116. object which return instances of ICustomTypeDescriptor instances,
  117. instead of actual items.
  118. 2008-07-30 Ivan N. Zlatev <[email protected]>
  119. * TableLayoutTest.cs: Add tests for bug #412582
  120. 2008-07-29 Jonathan Pobst <[email protected]>
  121. * ListBox.cs: Make test not font dependent.
  122. 2008-07-29 Jonathan Pobst <[email protected]>
  123. * ListBox.cs: Add test for bug #412728.
  124. 2008-07-25 Ivan N. Zlatev <[email protected]>
  125. * TableLayoutTest.cs: Add test for bug #412161
  126. 2008-07-23 Gert Driesen <[email protected]>
  127. * ListViewItemTest.cs: Marked SerializeExact_Mono as NotWorking to fix
  128. buildbot.
  129. 2008-07-22 Gert Driesen <[email protected]>
  130. * ListViewItemTest.cs: Enabled (de)serialization tests.
  131. * PictureBoxTest.cs: Enabled tests for bug #378308.
  132. 2008-07-20 Gert Driesen <[email protected]>
  133. * ListViewItemTest.cs: Fixed tests.
  134. 2008-07-20 Gert Driesen <[email protected]>
  135. * ListViewItemTest.cs: Added ListViewSubItem (de)serialization tests,
  136. added/improved ctor tests and add property tests.
  137. * PictureBoxTest.cs: Added tests for Load(Async) argument checks.
  138. 2008-07-15 Jonathan Pobst <[email protected]>
  139. * ImageListTest.cs: Add test for bug #409169.
  140. 2008-07-14 Jonathan Pobst <[email protected]>
  141. * TreeViewTest.cs: Add test for bug #409029.
  142. 2008-07-14 Jonathan Pobst <[email protected]>
  143. * TreeNodeCollectionTest.cs: Add test for bug #408999.
  144. 2008-07-12 Gert Driesen <[email protected]>
  145. * PictureBoxTest.cs: Split up ImageLocation test in sync and async
  146. tests.
  147. 2008-07-11 Gert Driesen <[email protected]>
  148. * PictureBoxTest.cs: Added (notworking) test for ImageLocation.
  149. 2008-07-10 George Giolfan <[email protected]>
  150. * FormTest.cs: Enabled the MinimizedWindowSize test and made it "NotWorking".
  151. 2008-07-09 Jonathan Pobst <[email protected]>
  152. * StatusBarTest.cs: Tests from Andy Hume for StatusBarPanelCollection.
  153. 2008-07-08 George Giolfan <[email protected]>
  154. * FormTest.cs: Disabled the MinimizedWindowSize test.
  155. 2008-07-08 Jonathan Pobst <[email protected]>
  156. * ComboBoxTest.cs: Test showing PreferredHeight is independent of
  157. ItemHeight.
  158. 2008-07-08 George Giolfan <[email protected]>
  159. * FormTest.cs: Added the MinimizedWindowSize test.
  160. 2008-07-07 Ivan N. Zlatev <[email protected]>
  161. * ControlTest.cs: Add tests for the Dispose behavior.
  162. 2008-07-07 Ivan N. Zlatev <[email protected]>
  163. * TableLayoutTest.cs: Add test for bug #402651
  164. 2008-07-04 Gert Driesen <[email protected]>
  165. * TreeViewTest.cs: Add test for bug #406449.
  166. 2008-07-03 Jonathan Pobst <[email protected]>
  167. * ScrollBarTest.cs: Add test for bug #403122.
  168. 2008-06-20 Ivan N. Zlatev <[email protected]>
  169. * PaddingConverterTest.cs: Add tests for bugs #396076 and #396078
  170. Based on patch by Andy Hume <[email protected]>
  171. 2008-06-14 Everaldo Canuto <[email protected]>
  172. * DataGridTextBoxColumnTest.cs: Fixes the size of text box, according to
  173. .Net results it must be (97,97).
  174. 2008-06-13 Jonathan Pobst <[email protected]>
  175. * DefaultLayoutTests.cs: Change test for bug #399316 to be less exact.
  176. 2008-06-13 Jonathan Pobst <[email protected]>
  177. * DefaultLayoutTests.cs: Add test for bug #399316.
  178. 2008-06-12 Jonathan Pobst <[email protected]>
  179. * DataGridViewDataBindingTest.cs: Add test for deleting rows
  180. from the dataset and the table.
  181. 2008-06-12 Jonathan Pobst <[email protected]>
  182. * DataGridViewDataBindingTest.cs: Add test for bug #399601.
  183. 2008-06-09 Jonathan Pobst <[email protected]>
  184. * ControlTest.cs: Add test for bug #397943.
  185. 2008-06-04 George Giolfan <[email protected]>
  186. * FormTest.cs: Added SettingIconToNull.
  187. 2008-06-03 George Giolfan <[email protected]>
  188. * DataGridViewTest.cs: Added EnableHeadersVisualStylesDefaultValue.
  189. 2008-06-03 Jonathan Pobst <[email protected]>
  190. * TableLayoutTest.cs Add another test for bug #396433.
  191. 2008-06-02 Jonathan Pobst <[email protected]>
  192. * TimerTest.cs: Disable test that fails a bunch on buildbots.
  193. 2008-06-02 Jonathan Pobst <[email protected]>
  194. * TableLayoutTest.cs Add test for bug #396433.
  195. 2008-06-02 Andreia Gaita <[email protected]>
  196. * TextBoxTest.cs: Fix endif
  197. 2008-06-02 Andy Hume <[email protected]>
  198. * TextBoxTest.cs: Test for TextBoxAutoCompleteSourceConverter,
  199. bug 396124.
  200. 2008-06-02 Jonathan Pobst <[email protected]>
  201. * TableLayoutTest.cs Add test for bug #396141.
  202. 2008-05-21 Jonathan Pobst <[email protected]>
  203. * TimerTest.cs: Increase sleep time to see if it will make
  204. StartTest fail less.
  205. 2008-05-21 Jonathan Pobst <[email protected]>
  206. * DataGridViewDataBindingTest.cs: Add test for bug #345483.
  207. 2008-05-21 Jonathan Pobst <[email protected]>
  208. * DataGridViewDataBindingTest.cs: Add test for bug #337470.
  209. 2008-05-20 Jonathan Pobst <[email protected]>
  210. * DataGridViewDataBindingTest.cs: Add test for bug #325239.
  211. 2008-05-20 Jonathan Pobst <[email protected]>
  212. * DataGridViewDataBindingTest.cs: Add test for AutoGenerateColumns.
  213. 2008-05-20 Jonathan Pobst <[email protected]>
  214. * DataGridViewColumnCollectionTest.cs: Change Add() test to not
  215. create 2 column collections.
  216. 2008-05-20 Jonathan Pobst <[email protected]>
  217. * DataGridViewDataBindingTest.cs: Added.
  218. 2008-05-20 Andreia Gaita <[email protected]>
  219. * WebBrowserTest.cs: Added WebBrowser unit tests (not included in the
  220. build at the moment)
  221. * tests2.sh: Fix case on dll name
  222. 2008-05-13 Atsushi Enomoto <[email protected]>
  223. * TimerTest.cs : added test for bug #325033.
  224. 2008-05-12 Jonathan Pobst <[email protected]>
  225. * ApplicationTest.cs: Disable test that I am tired of seeing
  226. false positives on the buildbot.
  227. 2008-05-09 Carlos Alberto Cortez <[email protected]>
  228. * BindingTest.cs: Activate a pair of previously not working 2.0 tests.
  229. 2008-05-07 Carlos Alberto Cortez <[email protected]>
  230. * ListBindingHelperTest.cs: Remove the NotWorking category from
  231. GetListItemPropertiesTest, as well as add a pair of new assertions.
  232. 2008-05-06 Carlos Alberto Cortez <[email protected]>
  233. * BindingSourceTest.cs: New tests for ApplySort and RemoveSort methods.
  234. 2008-05-06 Carlos Alberto Cortez <[email protected]>
  235. * BindingSourceTest.cs: Activate a pair of tests.
  236. 2008-05-06 Carlos Alberto Cortez <[email protected]>
  237. * BindingSOurceTest.cs: New assertion for
  238. ISupportInitializeNotification test.
  239. 2008-05-06 Carlos Alberto Cortez <[email protected]>
  240. * BindingSource.cs: New tests for ISupportInitializeNotification
  241. property.
  242. 2008-05-04 Carlos Alberto Cortez <[email protected]>
  243. * BindingSourceTest.cs: New tests for Sort property.
  244. 2008-05-04 Everaldo Canuto <[email protected]>
  245. * LinkLabelTest.cs: Enable tests related to bug #346156.
  246. 2008-05-04 Everaldo Canuto <[email protected]>
  247. * LinkLabelTest.cs: Enable tests related to bug #346154.
  248. 2008-05-03 Everaldo Canuto <[email protected]>
  249. * LinkLabelTest.cs: Put LinkTest and LinkCollectionTest classes outside of
  250. LinkLabelTest class, subclasses looks to be not work with nunit.
  251. 2008-05-03 Everaldo Canuto <[email protected]>
  252. * LinkLabelTest.cs: Remove NotWorking attribute from TestLinkArea, it is
  253. fixed in r102445.
  254. 2008-05-01 Jonathan Pobst <[email protected]>
  255. * DataGridViewRowCollectionTest.cs: Disable test requiring shared rows.
  256. * DataGridViewRowTest.cs, DataGridViewCellTest.cs: Disable
  257. tests requiring DGVComboBox.
  258. 2008-05-01 Jonathan Pobst <[email protected]>
  259. * InputLanguageTest.cs: Add test for bug #385506.
  260. 2008-04-29 Carlos Alberto Cortez <[email protected]>
  261. * BindingSourceTest.cs: New Filter/RemoveFilter tests.
  262. 2008-04-29 Carlos Alberto Cortez <[email protected]>
  263. * DragAndDropTest.cs: New test.
  264. 2008-04-28 Jonathan Pobst <[email protected]>
  265. * ScrollBarTest.cs: Add test for bug #384182.
  266. 2008-04-24 Jonathan Pobst <[email protected]>
  267. * InputLanguageTest.cs: Add test for bug #373871.
  268. 2008-04-23 Ivan N. Zlatev <[email protected]>
  269. * ControlTest.cs: Remove the focusing tests from the validation
  270. test. They fail on X11 anyway due to a long standing X11 visibility
  271. asynchronicity problem in MWF. The Vaildation test do pass.
  272. 2008-04-23 Jonathan Pobst <[email protected]>
  273. * DataGridViewRowHeaderTest.cs: Comment font dependent tests.
  274. 2008-04-23 Carlos Alberto Cortez <[email protected]>
  275. * DragAndDropTest.cs: New dnd tests.
  276. 2008-04-22 Jonathan Pobst <[email protected]>
  277. * DataGridViewRowHeaderTest.cs: Add some tests for new
  278. functionality.
  279. 2008-04-21 Jonathan Pobst <[email protected]>
  280. * TreeView.cs: Add tests for bug #382028.
  281. 2008-04-21 Gert Driesen <[email protected]>
  282. * ControlTest.cs: Enabled test for bug #330501.
  283. 2008-04-14 Carlos Alberto Cortez <[email protected]>
  284. * CurrencyManagerTest.cs: New 2.0 IsBinding test.
  285. 2008-04-12 Carlos Alberto Cortez <[email protected]>
  286. * BindingTest.cs: Enable some more tests.
  287. 2008-04-11 Carlos Alberto Cortez <[email protected]>
  288. * BindingTest.cs: Enable IsBindingTest.
  289. 2008-04-09 Jonathan Pobst <[email protected]>
  290. * DataGridViewImageCellTest.cs: Add.
  291. 2008-04-08 Jonathan Pobst <[email protected]>
  292. * DataGridViewCheckBoxCellTest.cs: Add.
  293. 2008-04-06 Carlos Alberto Cortez <[email protected]>
  294. * BindingSourceTest.cs: Enable some old not working tests.
  295. 2008-04-06 Carlos Alberto Cortez <[email protected]>
  296. * DataBindingTests.cs: Enable some CurrencyManager tests.
  297. 2008-04-05 Carlos Alberto Cortez <[email protected]>
  298. * BindingSourceTest.cs: Add new tests for GetRelatedCurrencyManager
  299. method.
  300. 2008-04-03 Jonathan Pobst <[email protected]>
  301. * DataGridViewLinkCellTest.cs: Add.
  302. 2008-04-03 Jonathan Pobst <[email protected]>
  303. * TimerTest.cs: Disable a finicky test that occasionally fails.
  304. 2008-04-02 Carlos Alberto Cortez <[email protected]>
  305. * BindingContextTest.cs: New test for ICurrencyManagerProvider
  306. instances passed as data sources.
  307. 2008-04-02 Carlos Alberto Cortez <[email protected]>
  308. * BindingSourceTest.cs: New test for type instances as data sources.
  309. 2008-04-02 Jonathan Pobst <[email protected]>
  310. * DataGridViewButtonCellTest.cs: Add.
  311. 2008-04-01 Carlos Alberto Cortez <[email protected]>
  312. * BindingSourceTest.cs: New test for ICancelAddNew support.
  313. * CurrencyManagerTest.cs: Likewise.
  314. 2008-04-01 Jonathan Pobst <[email protected]>
  315. * DataGridViewTest.cs: Commit the rest of my test so the tests
  316. compile.
  317. 2008-04-01 Jonathan Pobst <[email protected]>
  318. * DataGridViewTest.cs: Add tests for IsInputChar and IsInputKey.
  319. 2008-03-30 Carlos Alberto Cortez <[email protected]>
  320. * BindingSourceTest.cs: More event tests and also a new ones for
  321. RemoveCurrent and IsBindingSuspended properties.
  322. 2008-03-30 Carlos Alberto Cortez <[email protected]>
  323. * BindingSourceTest.cs: Add tests for ListChanged event, and also new
  324. assertions for Position property. Mark ListChanged_DataSourceSet as
  325. not working, while I try to figure out why setting the DataSource
  326. fires 2 events instead of only one.
  327. 2008-03-28 Carlos Alberto Cortez <[email protected]>
  328. * BindingSource.cs: Add test for just added members in BindingSource.
  329. 2008-03-28 Jonathan Pobst <[email protected]>
  330. * ComboBoxTest.cs: Add test for bug #374654.
  331. 2008-03-28 Jonathan Pobst <[email protected]>
  332. * DataGridViewTextBoxCellTest.cs: Mark 2 of the new tests
  333. as font dependent.
  334. 2008-03-28 Jonathan Pobst <[email protected]>
  335. * DataGridViewTextBoxCellTest.cs: Bunch of new tests.
  336. 2008-03-27 Carlos Alberto Cortez <[email protected]>
  337. * DataBindingTests.cs: Mark as NotWorking some CurrencyManager tests by
  338. now.
  339. 2008-03-26 Jonathan Pobst <[email protected]>
  340. * DataGridViewTest.cs: Add test for bug #343965.
  341. 2008-03-26 Jonathan Pobst <[email protected]>
  342. * TreeViewTest.cs: Add test for bug #373603.
  343. 2008-03-25 Carlos Alberto Cortez <[email protected]>
  344. * ListBindingHelper.cs: New test for GetListName method.
  345. 2008-03-25 Carlos Alberto Cortez <[email protected]>
  346. * BindingSourceTest.cs: New tests for Add/AddNew/Clear methods, as
  347. well as new assertions for other tests.
  348. 2008-03-25 Jonathan Pobst <[email protected]>
  349. * DataGridViewTest.cs: Enable gert's test for bug #325979.
  350. 2008-03-24 Carlos Alberto Cortez <[email protected]>
  351. * BindingSourceTest.cs: Re-activate some tests and also add a new
  352. ones.
  353. 2008-03-24 Jonathan Pobst <[email protected]>
  354. * DataGridViewTest.cs: Add test for bug #331649.
  355. 2008-03-24 Jonathan Pobst <[email protected]>
  356. * DataGridViewTest.cs: Add test for bug #325588.
  357. 2008-03-23 Carlos Alberto Cortez <[email protected]>
  358. * BindingSourceTest.cs: New assertion for DataMember_ListRelationship
  359. test method.
  360. 2008-03-23 Carlos Alberto Cortez <[email protected]>
  361. * ListBindingHelperTest.cs: New assertion for GetListTest () test
  362. method.
  363. 2008-03-21 Jonathan Pobst <[email protected]>
  364. * MenuItemTest.cs: Add test for #372845.
  365. 2008-03-21 Andreia Gaita <[email protected]>
  366. * FocusTest.cs: New test for #372616. Checks if a control inside a
  367. UserControl is selected when UserControl gets focus.
  368. 2008-03-20 Carlos Alberto Cortez <[email protected]>
  369. * BindingSourceTest.cs: New assertion case for DataSource, passing an
  370. instance of IListSource.
  371. * ListBindingHelperTest.cs: Make ListSource class internal.
  372. 2008-03-20 Jonathan Pobst <[email protected]>
  373. * DataGridViewCellTest.cs: Tests for newly implemented stuffs.
  374. 2008-03-20 Jonathan Pobst <[email protected]>
  375. * DataGridViewCellTest.cs: Don't verify exception message,
  376. throwing the exception is enough.
  377. 2008-03-20 Carlos Alberto Cortez <[email protected]>
  378. * ListBindingHelperTest.cs: Update GetListTest with new assertions.
  379. Also add GetListItemProperties tests - not working by now, but should
  380. guide us to a correct implementation.
  381. 2008-03-19 Jonathan Pobst <[email protected]>
  382. * DataGridViewCellTest.cs: Ignore Size test since a
  383. cell's height is based off its height.
  384. 2008-03-19 Jonathan Pobst <[email protected]>
  385. * DataGridViewCellTest.cs: Add new suite of tests.
  386. 2008-03-15 Carlos Alberto Cortez <[email protected]>
  387. * ListBindingHelperTest.cs: New GetListItemType test.
  388. 2008-03-13 Carlos Alberto Cortez <[email protected]>
  389. * ListBindingHelperTest.cs: New file and a new test.
  390. 2008-03-07 Carlos Alberto Cortez <[email protected]>
  391. * ControlBindingsCollectionTest.cs: New test for 2.0
  392. Default DataSourceUpdateMode property.
  393. 2008-03-06 Carlos Alberto Cortez <[email protected]>
  394. * ListBoxTest.cs: New tests for 2.0 selection methods
  395. in the different selection modes. Also, in GetSelectedTest (),
  396. be sure that we set the right selection mode (test cleaness).
  397. 2008-03-05 Jonathan Pobst <[email protected]>
  398. * TableLayoutTest.cs: Add test for bug #367249.
  399. 2008-02-27 Jonathan Pobst <[email protected]>
  400. * UserControlTest.cs: Add test for PreferredSize.
  401. 2008-02-26 Carlos Alberto Cortez <[email protected]>
  402. * BindingTest.cs: Added a new test for 2.0 BindableComponent property
  403. - again as not working ;-(. Also add a child class of ToolStripItem to
  404. test this property.
  405. * ControlBindingsCollectionTest.cs: Likewise.
  406. 2008-02-26 Carlos Alberto Cortez <[email protected]>
  407. * BindingTest.cs: Added a new test for 2.0 NullValue property - mark
  408. as NotWorking by now ;-(. Also add an assertion for this new property
  409. in CtorTest.
  410. 2008-02-23 Carlos Alberto Cortez <[email protected]>
  411. * BindingTest.cs: Update ctor test with 2.0 properties, and add new
  412. tests for 2.0 FormattingEnabled and FormatString properties.
  413. 2008-02-21 Jonathan Pobst <[email protected]>
  414. * ToolStripContainerTests.cs: Add test for bug #363555.
  415. 2008-02-20 Jonathan Pobst <[email protected]>
  416. * SplitContainerTests.cs: Add test for bug #363303.
  417. 2008-02-19 Jonathan Pobst <[email protected]>
  418. * SelectionRangeTest.cs: Add NET_2_0 so that 1.1 profile will build.
  419. 2008-02-19 Jonathan Pobst <[email protected]>
  420. * SelectionRangeTest.cs: Add tests from Andy Hume.
  421. 2008-02-19 Jonathan Pobst <[email protected]>
  422. * ComboBoxTest.cs: Use PreferredHeight in MethodScaleControl.
  423. Fixes buildbot failure.
  424. 2008-02-19 Jonathan Pobst <[email protected]>
  425. * FlowPanelTests.cs: Add test for bug #361448.
  426. 2008-02-19 Jonathan Pobst <[email protected]>
  427. * ComboBoxTest.cs: Add test for bug #360862.
  428. 2008-02-18 Andreia Gaita <[email protected]>
  429. * ControlTest.cs: New test to check if, when controls don't have
  430. a parent and are then reparented, their location is not changed.
  431. 2008-02-11 Carlos Alberto Cortez <[email protected]>
  432. * BindingTest.cs: New test for 2.0 DataSourceNullValue property -
  433. which is not working by now (but should guide us to correctly
  434. implement some missing features in data binding).
  435. 2008-02-10 Carlos Alberto Cortez <[email protected]>
  436. * BindingTest.cs: New test for changes in data source property (with
  437. a 'PropertyChange' event).
  438. 2008-02-08 Carlos Alberto Cortez <[email protected]>
  439. * BindingTest.cs: Add new cases for DataSourceUpdateMode test,
  440. and also add a 2.0 WriteValueTest test.
  441. 2008-02-08 Jonathan Pobst <[email protected]>
  442. * ComboBoxTest.cs: MethodScaleControl needs to take Font into
  443. account, which PreferredHeight does. Fixes a failing test.
  444. 2008_02-08 Carlos Alberto Cortez <[email protected]>
  445. * ListControl.cs: Add setter and events for MockItem members -
  446. we need them to test data binding.
  447. * BindingTest.cs: Add tests for 2.0 members (ControlUpdateMode,
  448. DataSourceUpdateMode, ReadValue), and for IsBinding property.
  449. Mark as NotWorking IsBindingTest and DataSourceUpdateMode as they are
  450. failing by now.
  451. 2008-02-08 Jonathan Pobst <[email protected]>
  452. * FormTest.cs: Commit tests from James Purcell for his new
  453. AutoScale implementation. [Bug #359098]
  454. 2008-02-07 Jonathan Pobst <[email protected]>
  455. * MdiFormTest.cs: Add test for bug #336296.
  456. 2008-02-07 Jonathan Pobst <[email protected]>
  457. * MdiFormTest.cs: Add test for bug #325473.
  458. 2008-02-06 Jonathan Pobst <[email protected]>
  459. * TimerTest.cs: Several asserts in one test had the same name,
  460. so I can't tell which assert is failing on the buildbot. Fixed.
  461. 2008-02-04 Carlos Alberto Cortez <[email protected]>
  462. * BindingsCollectionTest.cs: New file.
  463. 2008-02-04 Carlos Alberto Cortez <[email protected]>
  464. * CurrencyManagerTest.cs: New tests for 2.0 ListChanged event.
  465. * ListControlTest.cs: Add a default ctor for MockItem.
  466. 2008-02-03 Luke Page <[email protected]>
  467. * RichTextBoxTest.cs: Restored property test with failing tests
  468. commented so that it tests the fix to bug 358379 that AutoSize
  469. defaults to false.
  470. 2008-02-03 Luke Page <[email protected]>
  471. * TextBoxTest.cs: Added test from James Purcell for bug #358229 to
  472. test FixedHeight control style when multiline changed.
  473. 2008-02-01 Jonathan Pobst <[email protected]>
  474. * ListBoxTest.cs: Disable test that is default font dependent.
  475. 2008-02-01 Jonathan Pobst <[email protected]>
  476. * ListBoxTest.cs: Commit some tests for bug #357152 from James
  477. Purcell.
  478. 2008-01-30 Carlos Alberto Cortez <[email protected]>
  479. * BindingManagerBaseTest.cs: New test for 2.0 IsBindingSuspended test.
  480. 2008-01-28 Carlos Alberto Cortez <[email protected]>
  481. * ComboBoxTest.cs: New SelectedTextWithBinding test - for #333750.
  482. 2008-01-26 Gert Driesen <[email protected]>
  483. * ImageListStreamerTest.cs: Added binary (de)serialization tests.
  484. 2008-01-26 Carlos Alberto Cortez <[email protected]>
  485. * BindingTest.cs: Add DataSourceNullTest test - for #324286.
  486. 2008-01-26 Carlos Alberto Cortez <[email protected]>
  487. * ListControlTest.cs: Add SelectedValue2 test - for #324286.
  488. 2008-01-24 Jonathan Pobst <[email protected]>
  489. * TableLayoutTest.cs: Add tests for bug #354672.
  490. 2008-01-23 Jonathan Pobst <[email protected]>
  491. * FormTest.cs: Add test for bug 355703.
  492. 2008-01-23 Jonathan Pobst <[email protected]>
  493. * TableLayoutTest.cs: Set ClientSize to a known size to
  494. make Bug355408 () WM independent.
  495. 2008-01-23 Jonathan Pobst <[email protected]>
  496. * TableLayoutTest.cs: Add test for bug #355408.
  497. 2008-01-22 Jonathan Pobst <[email protected]>
  498. * TableLayoutTest.cs: Add test for bug #354676.
  499. 2008-01-22 Jonathan Pobst <[email protected]>
  500. * ScrollabeControlTest.cs: Add test for bug #354676.
  501. 2008-01-22 Jonathan Pobst <[email protected]>
  502. * ControlTest.cs: Add test for bug #355074.
  503. 2008-01-18 Jonathan Pobst <[email protected]>
  504. * FormTest.cs: Add test from James Purcell for bug #354669.
  505. 2008-01-18 Jonathan Pobst <[email protected]>
  506. * MdiFormTest.cs: Add test for bug #354286.
  507. 2008-01-15 Jonathan Pobst <[email protected]>
  508. * FormTest.cs: Add test for bug #353827.
  509. 2008-01-14 Jonathan Pobst <[email protected]>
  510. * FormTest.cs: Add tests for RestoreBounds.
  511. 2008-01-09 Carlos Alberto Cortez <[email protected]>
  512. * ListViewItemTest.cs: Activating the RemoveFocusedItem test,
  513. as well as commenting the assertion that is failling _only_ in the
  514. test scenario, not in real world (see the explanation in the test).
  515. 2008-01-06 Carlos Alberto Cortez <[email protected]>
  516. * ListControlTest.cs: New SelectedValue property test.
  517. 2008-01-05 Jonathan Pobst <[email protected]>
  518. * RichTextBoxTest.cs: Add test for bug #351886.
  519. 2007-12-30 Carlos Alberto Cortez <[email protected]>
  520. * CurrencyManagerTest.cs: In AddNew test, also check that
  521. CurrencyManager is firing the 2.0 ListChanged event, as well as
  522. passing the right ListChangedEventArgs.
  523. 2007-12-19 Carlos Alberto Cortez <[email protected]>
  524. * ListBoxTest.cs: New assertions in FindStringTest and
  525. FindStringExactTest methods, needed to make sure we are doing the right
  526. thing in those methods.
  527. 2007-12-18 Everaldo Canuto <[email protected]>
  528. * MenuItemTest.cs: Add a test case for menuitem properties when created by
  529. CloneMenu. Thanks Luke Page for test case.
  530. 2007-12-15 Carlos Alberto Cortez <[email protected]>
  531. * ListViewItemTest.cs: Added new Constructor_Group test, that I
  532. forgot to add after fixing a 2.0 bug.
  533. 2007-12-14 Carlos Alberto Cortez <[email protected]>
  534. * ListViewItemTest.cs: Contructor_Serializable test only applies for
  535. the 2.0 profile.
  536. 2007-12-13 Carlos Alberto Cortez <[email protected]>
  537. * ListBoxTest.cs: Added test for the case when the selected item
  538. is removed.
  539. 2007-12-13 Jonathan Pobst <[email protected]>
  540. * TableLayoutTest.cs: Add tests for bug #346246.
  541. 2007-12-11 Jonathan Pobst <[email protected]>
  542. * ControlTest.cs: Add a test for bug #347282.
  543. 2007-12-10 Jonathan Pobst <[email protected]>
  544. * ToolStripManagerTest.cs: Add a test for bug #347669.
  545. 2007-12-07 Jonathan Pobst <[email protected]>
  546. * DataBindingTests.cs: Silence some debug spew.
  547. 2007-12-06 Andreia Gaita <[email protected]>
  548. * FormTest.cs: Run ChildFocused test for win only, relies
  549. on synch messages on X
  550. 2007-12-06 Carlos Alberto Cortez <[email protected]>
  551. * ListViewItemTest.cs: Added new 2.0 Position test.
  552. 2007-12-06 Carlos Alberto Cortez <[email protected]>
  553. * ListViewItemTest.cs: Added new serialization test.
  554. 2007-12-05 Gert Driesen <[email protected]>
  555. * LinkLabelTest.cs: Added tests for bug #344012, bug #346154 and
  556. bug #346156.
  557. 2007-11-23 Gert Driesen <[email protected]>
  558. * MenuStripTest.cs: Added test for bug #342358.
  559. 2007-11-19 Everaldo Canuto <[email protected]>
  560. * NotifyIconTest.cs: Add Balloon test, bug #342141.
  561. 2007-11-16 Gert Driesen <[email protected]>
  562. * ComboBoxTest.cs: Enabled test for bug #331144.
  563. 2007-11-16 Carlos Alberto Cortez <[email protected]>
  564. * ListViewTest.cs: New exception test for 2.0 FindNearestItem method.
  565. 2007-11-13 Jonathan Pobst <[email protected]>
  566. * DateTimePickerTest.cs: Remove a compare on seconds in a format
  567. string so that we get a Assert.AreEqual (DateTime.Now, DateTime.Now)
  568. failure 60x less often on the buildbots. (I've never actually seen
  569. the minutes be different, but the possibility is still there.)
  570. 2007-11-07 Gert Driesen <[email protected]>
  571. * FormTest.cs: Added reference to bug #339641. Remove CWLs.
  572. 2007-11-04 Gert Driesen <[email protected]>
  573. * PropertyGridTest.cs: Enabled and improved PropertySort tests.
  574. 2007-11-03 Carlos Alberto Cortez <[email protected]>
  575. * ListViewItemTest.cs: Mark RemoveFocusedItem as NotWorking.
  576. * PropertyGridTest.cs: The same for PropertySort_Valid and
  577. PropertySort_Invalid.
  578. 2007-11-03 Carlos Alberto Cortez <[email protected]>
  579. * ListViewItemTest.cs: New tests for 2.0 IndentCount property.
  580. 2007-11-03 Gert Driesen <[email protected]>
  581. * ListViewItemTest.cs: Enabled test for bug #331643 and #330415.
  582. * PropertyGridTest.cs: Added tests for PropertySort.
  583. 2007-10-30 Jonathan Pobst <[email protected]>
  584. * FormTest.cs: Test from George for bug #325242.
  585. 2007-10-30 Jonathan Pobst <[email protected]>
  586. * FormTest.cs: Add test for bug #325436.
  587. 2007-10-30 Andreia Gaita <[email protected]>
  588. * ContainerControlTest.cs: Add test for #329718
  589. 2007-10-29 Jonathan Pobst <[email protected]>
  590. * DateTimePickerTest.cs: Tests for setting the Value outside the
  591. range of MinDate and MaxDate.
  592. 2007-10-16 Gert Driesen <[email protected]>
  593. * ButtonBaseTest.cs: Added test for IsDefault.
  594. * FormTest.cs: Added test for AcceptButton. Commented out CWLs.
  595. 2007-10-13 Carlos Alberto Cortez <[email protected]>
  596. * ListViewItemTest.cs: New tests for focused state. Also,
  597. comment a new ones, as they don't work by now, but should work
  598. as soon as we fix an issue there.
  599. 2007-10-13 Gert Driesen <[email protected]>
  600. * RichTextBoxTest.cs: Added tests for negative SelectionLength and
  601. SelectionStart.
  602. * TextBoxTest.cs: Added tests for negative SelectionLength and
  603. SelectionStart. Avoid using anonymous methods to allow tests to build
  604. using csc 1.x; use EventLogger to capture events. Removed CWL.
  605. 2007-10-11 Carlos Alberto Cortez <[email protected]>
  606. * DragEventArgsTest.cs: New file.
  607. 2007-10-07 Gert Driesen <[email protected]>
  608. * ListViewItemTest.cs: Added test for bug #330415 and #331643.
  609. Use Assert.IsFalse and Assert.IsTrue instead of Assert.AreEqual.
  610. 2007-10-05 Carlos Alberto Cortez <[email protected]>
  611. * TreeNodeTest.cs: Added a test to be sure leaf nodes
  612. keep their expanded/collapsed state when we get calls to
  613. Expand/Collapse. Also add a forgotten test for EndEdit method.
  614. 2007-10-05 Gert Driesen <[email protected]>
  615. * ComboBoxTest.cs: Added test for bug #331144.
  616. 2007-10-04 Carlos Alberto Cortez <[email protected]>
  617. * TreeViewEventsTest.cs: New file. Tests for TreeView events.
  618. 2007-10-04 Gert Driesen <[email protected]>
  619. * ControlTest.cs: Added test for bug #330501.
  620. 2007-10-02 Jonathan Pobst <[email protected]>
  621. * TextBoxTest.cs: Remove NotWorking from FocusSelectsAllTest.
  622. 2007-09-29 Jonathan Pobst <[email protected]>
  623. * RadioButtonTest.cs: Fix test to not fail on monobuild.
  624. 2007-09-27 Jonathan Pobst <[email protected]>
  625. * RadioButtonTest.cs: Added test for bug #328672.
  626. 2007-09-23 Gert Driesen <[email protected]>
  627. * DataGridViewTest.cs: Added test for bug #325979. Code formatting.
  628. 2007-09-23 Gert Driesen <[email protected]>
  629. * DataGridViewCellTest.cs: Code formatting. Removed useless SetUp and
  630. TearDown methods. Removed useless test.
  631. * DataGridViewCellCollectionTest.cs: Added indexer tests.
  632. 2007-09-21 Jonathan Pobst <[email protected]>
  633. * TreeViewTest.cs: Add test for bug #326858.
  634. 2007-09-20 Jonathan Pobst <[email protected]>
  635. * DateTimePickerTest.cs: Make DateTimeMinDate 2.0 only.
  636. 2007-09-19 Jonathan Pobst <[email protected]>
  637. * DateTimePickerTest.cs: Add test for bug #326609.
  638. 2007-09-14 Jonathan Pobst <[email protected]>
  639. * ToolStripTest.cs: Asserts showing Selectable control style depends
  640. on TabStop.
  641. 2007-09-14 Jonathan Pobst <[email protected]>
  642. * SplitContainerTests.cs: Enable some ignored tests mainly dealing
  643. with FixedPanel.
  644. 2007-09-12 Jonathan Pobst <[email protected]>
  645. * DefaultLayoutTest.cs: Test for Docked AutoSize controls.
  646. 2007-09-12 Jonathan Pobst <[email protected]>
  647. * TextBoxTest.cs: Change Modified test to use a fresh TextBox instead
  648. of relying on test running order. Fix font dependent-ness of Bug82749
  649. to be less than 30.
  650. 2007-09-12 Jonathan Pobst <[email protected]>
  651. * TextBoxTest.cs: Change an IsTrue to AreEqual in Bug82749 so that I
  652. can see what the failing value is on monobuild since I cannot repro locally.
  653. 2007-09-11 Jonathan Pobst <[email protected]>
  654. * DefaultLayoutTest.cs: Add test for bug #82805.
  655. 2007-09-11 Jonathan Pobst <[email protected]>
  656. * DefaultLayoutTest.cs: Mark Bug82762 as WM dependent.
  657. 2007-09-11 Jonathan Pobst <[email protected]>
  658. * TextBoxTest.cs: Add test for bug #82749.
  659. 2007-09-11 Jonathan Pobst <[email protected]>
  660. * ControlTest.cs: Add test for bug #82748.
  661. 2007-09-11 Jonathan Pobst <[email protected]>
  662. * ScrollBarTest.cs: Add test demonstrating behavior when Maximum
  663. is set lower than Value.
  664. 2007-09-11 Jonathan Pobst <[email protected]>
  665. * DefaultLayoutTest.cs: Add test for bug #82762.
  666. 2007-09-06 Jonathan Pobst <[email protected]>
  667. * TableLayoutTest.cs: Make test for bug #82605 not depend on font measurements.
  668. 2007-09-06 Jonathan Pobst <[email protected]>
  669. * TableLayoutTest.cs: Add test for bug #82605.
  670. 2007-08-31 Jonathan Pobst <[email protected]>
  671. * ToolStripItemTest.cs: Added test to show that Enabled can
  672. depend on Parent/Owner's Enabled.
  673. 2007-08-29 Jonathan Pobst <[email protected]>
  674. * ContainerControlTest.cs: Added test for ValidateChildren.
  675. 2007-08-25 Gert Driesen <[email protected]>
  676. * FolderBrowserDialogTest.cs: Added tests for Description and
  677. ShowNewFolderButton.
  678. 2007-08-24 Gert Driesen <[email protected]>
  679. * FolderBrowserDialogTest.cs: Added tests for SelectedPath and
  680. RootFolder.
  681. * SaveFileDialogTest.cs: Renamed class and improved AddExtension test.
  682. 2007-08-24 Carlos Alberto Cortez <[email protected]>
  683. * ListViewGroupTest.cs: New assertions for a pair of tests.
  684. 2007-08-23 George Giolfan <[email protected]>
  685. * FlowPanelTests.cs: Add PreferredSize test.
  686. 2007-08-23 Jonathan Pobst <[email protected]>
  687. * ListBoxTest.cs, ListViewTest.cs, TreeViewTest.cs: Add tests that show
  688. IsInputChar should always return true for these controls.
  689. 2007-08-22 Jonathan Pobst <[email protected]>
  690. * ComboBoxTest.cs: Add test for AutoSize behavior.
  691. 2007-08-21 Rolf Bjarne Kvinge <[email protected]>
  692. * DataGridViewCellTest.cs: Added GetClipboardContentTest,
  693. GetClipboardContentTestException.
  694. * DataGridViewClipboardHeaderTest.cs, DataGridViewClipboardTest.cs: Added.
  695. * DataGridViewColumnHeaderTest.cs: Added GetClipboardContentTestException
  696. * DataGridViewRowHeaderTest.cs: Added GetClipboardContentTestException/2.
  697. * DataGridViewTest.cs: Added GetClipboardContentsDisabled,
  698. GetClipboardContents, GetClipboardContents_HeadersAlways,
  699. GetClipboardContents_HeadersNever and GenerateClipboardTest with several
  700. helper functions.
  701. 2007-08-21 Rolf Bjarne Kvinge <[email protected]>
  702. * DataGridViewColumnCollectionTest.cs, DataGridViewComboBoxCellTest.cs,
  703. DataGridViewRowCollectionTest.cs, DataGridViewTextBoxColumnTest.cs,
  704. DataGridViewBandTest.cs: Fixed line endings.
  705. * DataGridViewCommon.cs: Fixed line endings, added
  706. CreateAndFillForClipboard.
  707. 2007-08-21 Rolf Bjarne Kvinge <[email protected]>
  708. * DataObjectTest.cs: Added TestConvertible.
  709. 2007-08-20 Carlos Alberto Cortez <[email protected]>
  710. * ListViewGroupCollectionTest.cs: New tests for the indexers.
  711. 2007-08-20 Rolf Bjarne Kvinge <[email protected]>
  712. * DataGridViewTest.cs: Added EditingRowAfterAddingColumns.
  713. 2007-08-20 Rolf Bjarne Kvinge <[email protected]>
  714. * StatusBarPanelTest.cs: Added IconWidth.
  715. 2007-08-19 Everaldo Canuto <[email protected]>
  716. * FormTest.cs: Add test for opacity.
  717. 2007-08-19 Everaldo Canuto <[email protected]>
  718. * DataGridTableStyle.cs: An assert added to test ResetHeaderFont.
  719. 2007-08-18 Rolf Bjarne Kvinge <[email protected]>
  720. * FormTest.cs: Added test for bug 82358.
  721. 2007-08-17 Jonathan Pobst <[email protected]>
  722. * FormTest.cs: Add test for bug #82470.
  723. 2007-08-15 Carlos Alberto Cortez <[email protected]>
  724. * ListViewCollectionsTest.cs: New tests for ListViewItemCollection
  725. when used with ListViewGroup.
  726. * ListViewGroupCollectionTest.cs: Likewise.
  727. * ListViewItemTest.cs: Likewise.
  728. 2007-08-14 Jonathan Pobst <[email protected]>
  729. * ToolBarButtonTest.cs: Add test showing how ImageIndex and ImageKey interact.
  730. 2007-08-10 Jonathan Pobst <[email protected]>
  731. * TextBoxTest.cs: Fix old SelectionLength assert to work on MS and match
  732. corrected Mono behavior.
  733. 2007-08-10 Rolf Bjarne Kvinge <[email protected]>
  734. * DataGridViewTest.cs: Added EditingRow.
  735. 2007-08-10 Jonathan Pobst <[email protected]>
  736. * ToolTip.cs: Add test for bug #82399.
  737. 2007-08-10 Jonathan Pobst <[email protected]>
  738. * TextBoxTest.cs: New test for 82371 to illustrate SelectionLength value when
  739. no text is selected.
  740. 2007-08-09 Jonathan Pobst <[email protected]>
  741. * ListBoxTest.cs: Mark test MethodScaleControl as not working.
  742. 2007-08-09 Rolf Bjarne Kvinge <[email protected]>
  743. * DataGridViewCommon.cs: Added CreateAndFillBig.
  744. * DataGridViewTest.cs: Added SelectedRowsTest and SelectedColumnsTest.
  745. 2007-08-09 Rolf Bjarne Kvinge <[email protected]>
  746. * DataGridViewCommon.cs: Added a comment.
  747. * DataGridViewCellTest.cs: Added ReadOnlyTest.
  748. 2007-08-09 Rolf Bjarne Kvinge <[email protected]>
  749. * DataGridViewColumnCollectionTest.cs: Added AddFullColumnSelect.
  750. 2007-08-08 Rolf Bjarne Kvinge <[email protected]>
  751. * ContainerControlTest.cs, ControlTest.cs, DefaultLayoutTest.cs,
  752. FormTest.cs, PanelTest.cs, TableLayoutTest.cs, UserControlTest.cs:
  753. Dispose of forms when they're no longer used.
  754. * ListViewCollectionsTest.cs: Dispose of listviews when they're no longer
  755. used.
  756. 2007-08-07 Jonathan Pobst <[email protected]>
  757. * ListBoxTest.cs: Added test for ScaleControl.
  758. 2007-08-07 Rolf Bjarne Kvinge <[email protected]>
  759. * DataGridViewTest.cs: Added test for #82326 and added a few forgotten
  760. [Test] attributes.
  761. 2007-08-01 Rolf Bjarne Kvinge <[email protected]>
  762. * DataGridViewCellTest.cs: Added EditTypeTest and TestDefaultValues.
  763. 2007-08-01 Rolf Bjarne Kvinge <[email protected]>
  764. * DataGridViewTest.cs: Added AutoResizeColumnTest.
  765. 2007-07-31 Rolf Bjarne Kvinge <[email protected]>
  766. * DataGridViewRowCollectionTest.cs: Added.
  767. 2007-07-27 Rolf Bjarne Kvinge <[email protected]>
  768. * DataGridViewRowTest.cs: Comment out more asserts that probably are
  769. DPI dependent.
  770. 2007-07-26 Rolf Bjarne Kvinge <[email protected]>
  771. * DataGridViewRowTest.cs: Comment out a few asserts that probably are
  772. DPI dependent.
  773. 2007-07-26 Rolf Bjarne Kvinge <[email protected]>
  774. * DataGridViewRowTest.cs: Added AddRow_Changes, InitialValues.
  775. * EventLogger.cs: Create a EventLog class, can print to the console
  776. events as they are raised.
  777. * DataGridViewCellTest.cs: Added AddRow_Changes.
  778. * TestHelper.cs: Add DumpObject, can be used to dump an object's values
  779. in a Assert.X (values) form.
  780. * FormTest.cs: Added ChildFocused test (NotWorking).
  781. 2007-07-25 Jonathan Pobst <[email protected]>
  782. * LabelTest.cs: Test showing that changing the width or height when
  783. autosize = true has no effect.
  784. 2007-07-24 Rolf Bjarne Kvinge <[email protected]>
  785. * DataGridViewColumnCollectionTest.cs,
  786. DataGridViewTextBoxColumnTest.cs, DataGridViewBandTest.cs,
  787. DataGridViewCommon.cs, DataGridViewComboBoxCellTest.cs: Added.
  788. * DataGridViewColumnTest.cs: Added InitialValues.
  789. * DataGridViewTest.cs: More tests.
  790. 2007-07-23 Rolf Bjarne Kvinge <[email protected]>
  791. * DataGridViewTest.cs: More tests.
  792. * CurrencyManagerTest.cs: Remove CWL's.
  793. 2007-07-23 Rolf Bjarne Kvinge <[email protected]>
  794. * ScrollableControlTest.cs: Added AutoScrollPositiontest
  795. 2007-07-20 Rolf Bjarne Kvinge <[email protected]>
  796. * FormHandleTest.cs: Make a couple of classes public, so that other
  797. tests can use them.
  798. * FormTest.cs: Added tests for #81969.
  799. 2007-07-20 Rolf Bjarne Kvinge <[email protected]>
  800. * ComboBoxTests.cs, ComboBoxTest.cs: Unified ComboBoxTest.cs and
  801. ComboBoxTests.cs, deleted ComboBoxTests.cs
  802. 2007-07-18 Jonathan Pobst <[email protected]>
  803. * ToolStripTest.cs: One of my notworking tests slipped out.
  804. 2007-07-18 Jonathan Pobst <[email protected]>
  805. * ListBoxTest.cs, MenuStripTest.cs, ToolStripComboBoxTest.cs,
  806. ToolStripContentPanelTest.cs, ToolStripControlHostTest.cs,
  807. ToolStripDropDownTest.cs, ToolStripProgressBarTest.cs,
  808. ToolStripTest.cs: Sync up some local test additions.
  809. 2007-07-18 Jonathan Pobst <[email protected]>
  810. * ListControl.cs: Fix test that is failing on i586.
  811. 2007-07-17 Jonathan Pobst <[email protected]>
  812. * ContainerControlTest.cs: Add test for 2.0 AutoScaling. It's
  813. marked NotWorking because it depends on fonts and DPI, but it
  814. can still be used to compare to .NET.
  815. 2007-07-16 Gert Driesen <[email protected]>
  816. * ComboBoxTest.cs: Added test for bug #82069.
  817. * ListControlTest.cs: Added tests for bug #81771.
  818. 2007-07-12 Jonathan Pobst <[email protected]>
  819. * ButtonTest.cs: Add test showing a NSE if Flat BorderColor is
  820. transparent.
  821. 2007-07-09 Jonathan Pobst <[email protected]>
  822. * MessageTest.cs: Add tests for op_Equality and op_Inequality.
  823. 2007-07-09 Jonathan Pobst <[email protected]>
  824. * LinkAreaTest.cs: Add tests for op_Equality and op_Inequality.
  825. 2007-07-09 Jonathan Pobst <[email protected]>
  826. * ListBoxTest.cs: Add test for bug #80466.
  827. 2007-07-08 Jonathan Pobst <[email protected]>
  828. * TableLayoutTest.cs: Simplify and enable Gert's test for bug
  829. #82040. Add a test for bug #82041.
  830. 2007-07-08 Gert Driesen <[email protected]>
  831. * TableLayoutTest.cs: Added test for bug #82040.
  832. 2007-07-07 Jonathan Pobst <[email protected]>
  833. * TableLayoutTest.cs: Add test for bug #81936.
  834. 2007-07-06 Jonathan Pobst <[email protected]>
  835. * ListControl.cs: Add test for Formatting behavior.
  836. 2007-07-06 Jonathan Pobst <[email protected]>
  837. * LabelTest.cs: Add test for Image[List|Index|Key].
  838. 2007-07-06 Jonathan Pobst <[email protected]>
  839. * TableLayoutTest.cs: I had marked CellBorderTest as WM dependent when it
  840. failed on the buildbots. I just realized it was actually failing due to
  841. a Label change I hadn't committed, which has now been committed.
  842. 2007-07-05 Jonathan Pobst <[email protected]>
  843. [Various tests from my local tree]
  844. * ButtonBaseTest.cs: Test for default Accessibility.State.
  845. * LabelTest.cs: Test for default Margin.
  846. * MenuStripTest.cs: Test for CanSelect.
  847. * ScrollBarTest.cs: Test for 2.0 ScrollBarEventArgs.
  848. * SplitContainerTests.cs: Uncomment some Dock and Location asserts.
  849. * StatusStripTest.cs: Tests for default RenderMode and AccessibilityObject.
  850. * ToolStripDropDownTest.cs: Tests for default TextDirection and AccessibilityObject.
  851. * ToolStripItemTest.cs: Test for default TextDirection, ProcessMnemonic.
  852. * ToolStripMenuItemTest.cs: Test for default ForeColor and AccessibilityObject.
  853. * UserControlTest.cs: Test for AutoSize behavior.
  854. 2007-07-04 Carlos Alberto Cortez <[email protected]>
  855. * ListViewItemTest.cs: Add tests for Focused property.
  856. 2007-07-04 Carlos Alberto Cortez <[email protected]>
  857. * ListViewTest.cs: Add tests for 2.0 FocusedItem property setter.
  858. 2007-07-03 Carlos Alberto Cortez <[email protected]>
  859. * ListViewTest.cs: Add tests for 2.0 TopItem property setter.
  860. 2007-07-03 Jonathan Pobst <[email protected]>
  861. * FormTest.cs, TableLayoutTest.cs: Mark some tests that depend on
  862. WM decoration sizes as Ignore.
  863. 2007-06-22 Carlos Alberto Cortez <[email protected]>
  864. * ListViewTest.cs: Add test for 2.0 HotTracking.
  865. 2007-06-21 Jonathan Pobst <[email protected]>
  866. * TableLayoutTest.cs: Add test for CellBorderStyle.
  867. 2007-06-12 Jonathan Pobst <[email protected]>
  868. * FormTest.cs: Add tests for ScaleControl and GetScaledBounds.
  869. 2007-06-12 Jonathan Pobst <[email protected]>
  870. * TableLayoutTest.cs: Add test for bug #81843.
  871. 2007-06-12 Jonathan Pobst <[email protected]>
  872. * UpDownBaseTest.cs: Test for Min/Max size.
  873. 2007-06-12 Jonathan Pobst <[email protected]>
  874. * ErrorProviderTest.cs: Test for Clear method.
  875. 2007-06-12 Jonathan Pobst <[email protected]>
  876. * PictureBoxTests.cs: Test for 2.0 field defaults.
  877. 2007-06-12 Andreia Gaita <[email protected]>
  878. * TabControlTest.cs: Add test for tabcontrol without tabs but with a font
  879. change (triggers a ResizeTabs call and was blowing up nicely - #81802).
  880. 2007-06-12 Raja R Harinath <[email protected]>
  881. * ListViewCollectionsTest.cs (SelectedIndexCollectionTest_IndexOfTest):
  882. Move to NET_2_0 profile.
  883. 2007-06-11 Carlos Alberto Cortez <[email protected]>
  884. * ListViewCollectionsTest.cs: New tests for CheckedItemCollection and
  885. SelectedIndexCollection when using VirtualMode.
  886. 2007-06-08 Jonathan Pobst <[email protected]>
  887. * GroupBoxTest.cs: Argh! I cannot freaking get this right. Remove the "!".
  888. 2007-06-08 Jonathan Pobst <[email protected]>
  889. * GroupBoxTest.cs: Missed an if.
  890. 2007-06-08 Jonathan Pobst <[email protected]>
  891. * GroupBoxTest.cs: AutoSize is theme dependent.
  892. 2007-06-08 Jonathan Pobst <[email protected]>
  893. * ComboBoxTest.cs: Add test for ScaleControl.
  894. 2007-06-08 Jonathan Pobst <[email protected]>
  895. * GroupBoxTest.cs: Add some 2.0 tests.
  896. 2007-06-08 Jonathan Pobst <[email protected]>
  897. * PanelTest.cs: Add.
  898. 2007-06-07 Jonathan Pobst <[email protected]>
  899. * ScrollableControlTest.cs: ScrollToControl test is theme dependent due to
  900. the width of scrollbars.
  901. 2007-06-07 Jonathan Pobst <[email protected]>
  902. * ScrollableControlTest.cs: Add test for ScrollToControl.
  903. 2007-06-06 Jonathan Pobst <[email protected]>
  904. * ScrollBarTest.cs, SplitterTest.cs: Add some 2.0 tests.
  905. * ScrollBarTest.cs: Comment out several tests that no longer compile due
  906. to bug #81818.
  907. 2007-06-06 Jonathan Pobst <[email protected]>
  908. * ButtonTest.cs: BehaviorAutoSize is font dependent, only run on windows.
  909. 2007-06-06 Jonathan Pobst <[email protected]>
  910. * ButtonBaseTest.cs: Add test for default values.
  911. * ButtonTest.cs: Add test for default values, add test for AutoSize.
  912. 2007-06-04 Gert Driesen <[email protected]>
  913. * PropertyGridTest.cs: Added test for bug #81796, and reworked
  914. SelectedGridItem_Null test to no longer check actual message.
  915. 2007-06-01 Jonathan Pobst <[email protected]>
  916. * FormTest.cs: Modify AutoSizeGrowAndShrink test to pass on all WM's.
  917. 2007-06-01 Jonathan Pobst <[email protected]>
  918. * FormTest.cs: Add tests for AutoSize'ing.
  919. 2007-05-23 Everaldo Canuto <[email protected]>
  920. * LabelTest.cs: Fix SizeTest for 2.0 profile since autosize theres
  921. diferent behavior on 2.0.
  922. 2007-06-01 Rolf Bjarne Kvinge <[email protected]>
  923. * ScrollableControlTest.cs: Add ResizeAnchoredTest.
  924. * PropertyGridTest.cs: A few more tests.
  925. 2007-06-01 Carlos Alberto Cortez <[email protected]>
  926. * ListViewTest.cs: Added a new test for 2.0 RedrawItem method.
  927. 2007-05-31 Jonathan Pobst <[email protected]>
  928. * ControlTest.cs: Add tests for 2.0 scaling methods.
  929. 2007-05-30 Andreia Gaita <[email protected]>
  930. * FocusTest.cs: Add tests for ContainerControl - fire events even if
  931. there is no form, and set active control before firing events.
  932. 2007-05-29 Jonathan Pobst <[email protected]>
  933. * ControlTest.cs: Test to show the effects of ResumeLayout(false).
  934. 2007-05-28 Carlos Alberto Cortez <[email protected]>
  935. * ListView.cs:
  936. * ListViewItem.cs: Added 2.0 ListViewItem.ToolTipText tests.
  937. 2007-05-28 Rolf Bjarne Kvinge <[email protected]>
  938. * TextBoxTest.cs: Ignore a couple of font-dependent tests.
  939. 2007-05-28 Rolf Bjarne Kvinge <[email protected]>
  940. * MonthCalendarTest.cs: Added InitialSizeTest.
  941. 2007-05-28 Rolf Bjarne Kvinge <[email protected]>
  942. * FormTest.cs: Increase timeout value. Might prevent tests from failing
  943. on slower computers.
  944. 2007-05-28 Gert Driesen <[email protected]>
  945. * DateTimePickerTest.cs: Added tests for MinDate and MaxDate.
  946. 2007-05-27 Gert Driesen <[email protected]>
  947. * DateTimePickerTest.cs: Avoid test failures on Windows system with
  948. non-us locale.
  949. 2007-05-27 Gert Driesen <[email protected]>
  950. * NumericUpDownTest.cs: Avoid use of global identifier since csc 1.x
  951. does not support this.
  952. * FormTest.cs: Avoid using anonymous methods. Allows our test to build
  953. again using csc 1.x.
  954. 2007-05-27 Gert Driesen <[email protected]>
  955. * TreeNodeCollectionTest.cs: Added tests for Add and AddRange. Fixed
  956. and improved test for IList indexer.
  957. 2007-05-25 Gert Driesen <[email protected]>
  958. * TextBoxTest.cs: Improve tests for Copy, Cut and Paste to also cover
  959. bug #81736.
  960. 2007-05-25 Rolf Bjarne Kvinge <[email protected]>
  961. * KeyEventArgsTest.cs: Added.
  962. 2007-05-24 Andreia Gaita <[email protected]>
  963. * NumericUpDownTest.cs: Added 1.1 and 2.0 tests.
  964. 2007-05-24 Carlos Alberto Cortez <[email protected]>
  965. * ListControlTest.cs:
  966. * CheckedListBoxTest.cs: Move the GetItemText test
  967. to ListControl, since the method it's part of it. Also
  968. add a FilterItemOnProperty test.
  969. 2007-05-24 Jonathan Pobst <[email protected]>
  970. * DefaultLayoutTest.cs: Add test for bug 81199. (nested controls)
  971. 2007-05-24 Jonathan Pobst <[email protected]>
  972. * ContainerControlTest.cs: Test to show ProcessMnemonic is called
  973. regardless of CanSelect.
  974. 2007-05-23 Jonathan Pobst <[email protected]>
  975. * TestHelper.cs: Remove reference to event_log from constructor.
  976. 2007-05-23 Jonathan Pobst <[email protected]>
  977. * ControlTest.cs: Add test to show that setting a control's Visible
  978. property causes it's parent to relayout.
  979. 2007-05-23 Jonathan Pobst <[email protected]>
  980. * DefaultLayoutTest.cs: Add test for docking when parent has Padding.
  981. 2007-05-23 Everaldo Canuto <[email protected]>
  982. * TestHelper.cs: Remove Event log we already have a EventLogger class.
  983. 2007-05-23 Everaldo Canuto <[email protected]>
  984. * TestHelper.cs: Event log added.
  985. 2007-05-23 Everaldo Canuto <[email protected]>
  986. * ContextMenuTest.cs: ContextMenu tests added.
  987. 2007-05-23 Rolf Bjarne Kvinge <[email protected]>
  988. * ToolBarButtonTest.cs: Added test for Name.
  989. 2007-05-22 Gert Driesen <[email protected]>
  990. * FormTest.cs: Renamed FormCantGetTooSmall test and use comparison
  991. with SystemInformation.MinimumWindowSize. Enable test.
  992. 2007-05-22 Rolf Bjarne Kvinge <[email protected]>
  993. * FormTest.cs: Added ShowDialogCloseTest.
  994. 2007-05-21 Jonathan Pobst <[email protected]>
  995. * FormTest.cs: Mark FormCantGetTooSmall as NotWorking. It only applies to Windows.
  996. 2007-05-21 Jonathan Pobst <[email protected]>
  997. * DefaultLayoutTest.cs: Tests for bugs 81694, 81695.
  998. * FormTest.cs: Test setting the form size smaller than the WM will
  999. allow it.
  1000. 2007-05-21 Chris Toshok <[email protected]>
  1001. * DataBindingTests.cs (TestColumnAdd): enable this test. the
  1002. system.data changes required are in, and it works now.
  1003. 2007-05-19 Andreia Gaita <[email protected]>
  1004. * NumericUpDownTest: Added.
  1005. 2007-05-18 Jonathan Pobst <[email protected]>
  1006. * DataObjectTest.cs: Added.
  1007. 2007-05-18 Gert Driesen <[email protected]>
  1008. * TreeViewTest.cs: Added test for DoubleBuffered.
  1009. 2007-05-18 Jonathan Pobst <[email protected]>
  1010. * KeysConverterTest.cs: Added.
  1011. * LinkConverterTest.cs: Added.
  1012. * LinkLabelTest.cs: Added tests for LinkLabel.Link.
  1013. 2007-05-17 Carlos Alberto Cortez <[email protected]>
  1014. * ListBoxTest.cs: New test for some exceptions in
  1015. ListBox.ObjectCollection methods.
  1016. 2007-05-17 Chris Toshok <[email protected]>
  1017. * ControlBindingsCollectionTest.cs: new test file, move a test
  1018. from BindingTest here.
  1019. * BindingTest.cs (DuplicateBindingAdd): move the test to
  1020. ControlBindingsCollectionTest.
  1021. * BindingManagerBaseTest.cs (BindingsTest): enable this test.
  1022. passes now.
  1023. * DataBindingTests.cs: define #WITH_BINDINGS, since we now seem to
  1024. work with them.
  1025. (TestInsertRowBeforeCurrent): ignore this test on 2.0 though, as
  1026. we generate too many Binding.Format events.
  1027. (TestColumnAdd): ignore this test on 1.1, until System.Data
  1028. generates the proper (2) number of events causing us to emit
  1029. MetadataChanged.
  1030. * CurrencyManagerTest.cs (AddNew2): ignore this test for the time
  1031. being. it's hitting a System.Data exception which doesn't happen
  1032. on MS.
  1033. 2007-05-17 Rolf Bjarne Kvinge <[email protected]>
  1034. * TextBoxTest.cs: BackColorTest: Fix it, we may get invalidates and
  1035. paints after a Form.Show ().
  1036. 2007-05-17 Andreia Gaita <[email protected]>
  1037. * TabControlTest.cs: Ignore the enter/leave tests for a bit
  1038. 2007-05-17 Andreia Gaita <[email protected]>
  1039. * TabControlTest.cs: Add tests for Enter/Leave events on tabpages
  1040. 2007-05-17 Jonathan Pobst <[email protected]>
  1041. * TreeViewImageIndexConverterTest.cs: Added.
  1042. 2007-05-17 Jonathan Pobst <[email protected]>
  1043. * ToolStripTextBoxTest.cs: Enable tests for auto complete and shortcuts
  1044. enabled stuff.
  1045. 2007-05-16 Jonathan Pobst <[email protected]>
  1046. * ImageKeyConverterTest.cs: Added.
  1047. * TreeViewImageKeyConverterTest.cs: Added.
  1048. 2007-05-15 Jonathan Pobst <[email protected]>
  1049. * TextBoxTest.cs: Add test for IsInputChar method.
  1050. 2007-05-11 Gert Driesen <[email protected]>
  1051. * ToolStripItemCollectionTest.cs: Removed duplicate test.
  1052. 2007-05-11 Everaldo Canuto <[email protected]>
  1053. * ToolBarTest.cs: Add tests for toolbar size (horizontal and vertical),
  1054. also test #81523.
  1055. 2007-05-10 Everaldo Canuto <[email protected]>
  1056. * ToolBarTest.cs: CreateHandleTest added.
  1057. 2007-05-10 Jonathan Pobst <[email protected]>
  1058. * FormTest.cs: Marking test for bug 81582 as NotWorking as it fails
  1059. on X11. Bug is reopened.
  1060. 2007-05-10 Jonathan Pobst <[email protected]>
  1061. * ToolStripItemCollectionTest.cs: Enable tests.
  1062. 2007-05-10 Rolf Bjarne Kvinge <[email protected]>
  1063. * MaskedTextBoxTest.cs: Added more tests.
  1064. 2007-05-10 Jonathan Pobst <[email protected]>
  1065. * FormTest.cs: Add test for bug 81582.
  1066. 2007-05-10 Gert Driesen <[email protected]>
  1067. * ToolStripItemCollectionTest.cs: Added tests for ctor, Insert and
  1068. Remove.
  1069. 2007-05-09 Jonathan Pobst <[email protected]>
  1070. * ControlTest.cs: Expand and enable test for UseWaitCursor.
  1071. 2007-05-09 Jonathan Pobst <[email protected]>
  1072. * ControlTest.cs: Added test for IsInputChar.
  1073. 2007-05-09 Jonathan Pobst <[email protected]>
  1074. * ControlTest.cs: Added tests for PreProcessMessage and
  1075. PreProcessControlMessage.
  1076. 2007-05-08 Gert Driesen <[email protected]>
  1077. * ControlTest.cs: Added test for UseWaitCursor.
  1078. 2007-05-07 Jonathan Pobst <[email protected]>
  1079. * ControlTest.cs: Tests demonstrating Control.AutoSize from
  1080. Stefan Noack.
  1081. 2007-05-07 Jonathan Pobst <[email protected]>
  1082. * ToolStripManagerTest.cs: Add test for bug #81477.
  1083. 2007-05-04 Jonathan Pobst <[email protected]>
  1084. * ControlTest.cs: Expand GetChildAtPointTest to cover 2.0 cases.
  1085. 2007-05-04 Rolf Bjarne Kvinge <[email protected]>
  1086. Added.
  1087. 2007-05-04 Rolf Bjarne Kvinge <[email protected]>
  1088. * MdiFormTest.cs: Added DeactivatedEventTest.
  1089. 2007-05-03 Chris Toshok <[email protected]>
  1090. * DataBindingTests.cs: enable TestInsertRowAtCurrent in the 2.0
  1091. profile as well.
  1092. 2007-05-03 Jonathan Pobst <[email protected]>
  1093. * ApplicationTest.cs: Add a test for RaiseIdle.
  1094. 2007-05-01 Frederik Carlier <[email protected]>
  1095. * TreeNodeCollectionTest.cs: Add Unit tests for ContainsKey and
  1096. IndexOfKey methods.
  1097. 2007-04-30 Gert Driesen <[email protected]>
  1098. * DataGridViewColumnTest.cs: Added test for bug #81464, improved
  1099. existing tests.
  1100. * DataGridViewTextBoxCellTest.cs: Added test for Value.
  1101. * RichTextBoxTest.cs: Added test for bug #80626.
  1102. * TabControlTest.cs: Added test for TabPageCollection indexer.
  1103. * TextBoxTest.cs: Enabled test for bug #80626.
  1104. 2007-04-29 Andreia Gaita <[email protected]>
  1105. * TabControlTest.cs: Add more 2.0 select and deselect tab tests.
  1106. 2007-04-28 Gert Driesen <[email protected]>
  1107. * DataBindingTest.cs: Avoid using anonymous methods to allow tests to
  1108. build using csc 1.x.
  1109. * CurrencyManagerTest.cs: Same.
  1110. 2007-04-24 Alan McGovern <[email protected]>
  1111. * BindingNavigatorTest.cs: Ignored failing test until a bug gets fixed
  1112. 2007-04-27 Chris Toshok <[email protected]>
  1113. * CurrencyManagerTest.cs, DataBindingTests.cs,
  1114. BindingManagerBaseTest.cs, BindingSourceTest.cs, BindingTest.cs:
  1115. lots of misc changes.
  1116. 2007-04-26 Jonathan Pobst <[email protected]>
  1117. * ToolStripTest.cs: Fix the failing MethodGetNextItem test.
  1118. 2007-04-25 Rolf Bjarne Kvinge <[email protected]>
  1119. * FormHandleTest.cs, ControlEventTest.cs, MenuStripTest.cs,
  1120. ProgressBarTest.cs, RichTextBoxTest.cs, ListViewEventTest.cs,
  1121. TreeViewTest.cs, ColumnHeaderTest.cs, ApplicationContextTest.cs,
  1122. MdiFormTest.cs, MenuItemTest.cs, TextBoxTest.cs, ListBoxTest.cs,
  1123. ToolStripTest.cs, ToolStripMenuItemTest.cs, ControlTest.cs,
  1124. ToolBarTest.cs: Dispose of the 61 forms we were keeping open while
  1125. running the tests.
  1126. * ApplicationTest.cs: Dispose of the 61 forms we were keeping open
  1127. while running the tests. Added OpenFormsTest.
  1128. * FormTest.cs: Dispose of the 61 forms we were keeping open while
  1129. running the tests. Added DialogOwnerTest.
  1130. 2007-04-24 Alan McGovern <[email protected]>
  1131. * BindingNavigatorTest.cs: Added more tests to check more behaviour
  1132. 2007-04-24 Jonathan Pobst <[email protected]>
  1133. * ToolStripDropDownTest.cs: Add Assert for default orientation.
  1134. * ToolStripTest.cs: Enable tests for CanOverflow and DefaultDropDownDirection.
  1135. Add test for GetNextItem.
  1136. 2007-04-24 Rolf Bjarne Kvinge <[email protected]>
  1137. * MdiFormTest.cs: Added tests for #81409.
  1138. 2007-04-24 Rolf Bjarne Kvinge <[email protected]>
  1139. * MdiFormTest.cs: Added tests for #81409.
  1140. 2007-04-24 Raja R Harinath <[email protected]>
  1141. * BindingNavigatorTest.cs (CheckStandardItems): Avoid use of NUnit
  1142. API newer than present in the tree.
  1143. 2007-04-24 Alan McGovern <[email protected]>
  1144. * BindingNavigatorTest.cs: Initial tests
  1145. 2007-04-23 Chris Toshok <[email protected]>
  1146. * TestHelper.cs: move RunningOnUnix here.
  1147. * FocusTest.cs: use TestHelper.RunningOnUnix.
  1148. * FormTest.cs: use TestHelper.RunningOnUnix.
  1149. 2007-04-23 Jonathan Pobst <[email protected]>
  1150. * TableLayoutTest.cs: Add a bunch of tests I thought I had lost
  1151. before I lose them for real.
  1152. 2007-04-21 Jonathan Pobst <[email protected]>
  1153. * DefaultLayoutTest.cs: Added test for bug #81397.
  1154. 2007-04-21 Gert Driesen <[email protected]>
  1155. * RichTextBoxTest.cs: Added test for bug #80620.
  1156. * TreeViewTest.cs: Added test for bug #80620.
  1157. * ListViewTest.cs: Added test for bug #80620.
  1158. * UpDownTest.cs: Added test for bug #80620.
  1159. * TextBoxTest.cs: Enabled test for bug #80620.
  1160. 2007-04-19 Jonathan Pobst <[email protected]>
  1161. * GroupBoxTest.cs: Add tests for default properties and
  1162. DisplayRectangle.
  1163. 2007-04-18 Gert Driesen <[email protected]>
  1164. * FormTest.cs: Enabled test for bug #80773.
  1165. 2007-04-17 Chris Toshok <[email protected]>
  1166. * BindingTest.cs: remove the NotWorking from
  1167. BindingContextChangedTest2, and add a new, NotWorking test.
  1168. 2007-04-16 Jonathan Pobst <[email protected]>
  1169. * ButtonTest.cs, ToolStripItemTest.cs: Remove image stretching
  1170. from ImageList tests and reenable tests.
  1171. 2007-04-13 Jonathan Pobst <[email protected]>
  1172. * ToolStripItemTest.cs: Enable a bunch of tests for recently
  1173. implemented properties.
  1174. * ToolStripManager.cs: Add tests for Merge and RevertMerge.
  1175. 2007-04-09 Gert Driesen <[email protected]>
  1176. * DataGridTextBoxColumnTest.cs: Added IsInEditOrNavigateMode tests.
  1177. Enabled test after IsInEditOrNavigateMode fix.
  1178. 2007-04-09 Gert Driesen <[email protected]>
  1179. * DataGridTextBoxColumnTest.cs: Added tests for IFormattable and
  1180. TypeConverter usage in Edit and Commit.
  1181. 2007-04-08 Gert Driesen <[email protected]>
  1182. * ListViewItemTest.cs: Added several ctor tests. Added tests to verify
  1183. throws exceptions. Added tests for ListViewSubItemCollection's Clear
  1184. and RemoteAt methods that prove that we need to ensure there's always
  1185. at least one subitem.
  1186. 2007-04-07 Gert Driesen <[email protected]>
  1187. * ProgressBarTest.cs: Added ForeColor and ResetForeColor tests.
  1188. * TextBoxTest.cs: Added NotWorking tests for bugs #80620 and #80626.
  1189. 2007-04-05 Gert Driesen <[email protected]>
  1190. * TreeViewTest.cs: Added NotWorking test for bug #81319.
  1191. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  1192. * ControlTest.cs: Ignore EventStyleTest (can't find a reliable way to
  1193. generate paint messages on Windows) and change PubPropTest to
  1194. accept (0,0) as a valid mouse location.
  1195. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  1196. * DateTimePickerTest.cs: Added a few more cases to TextTest.
  1197. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  1198. * DateTimePickerTest.cs: Added a few more cases to TextTest.
  1199. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  1200. * MdiFormTest.cs: Added ChangeClientSizeTest for bug 80995.
  1201. 2007-04-02 Rolf Bjarne Kvinge <[email protected]>
  1202. * ContainerControlTest.cs: Add RemoveActiveControlTest
  1203. * MdiFormHandleTest.cs, BindingTest.cs: Remove stacktrace from output.
  1204. * FormTest.cs: Add special window style cases.
  1205. 2007-03-31 Gert Driesen <[email protected]>
  1206. * RichTextBoxTest.cs: Added BackColor test. Improved ReadOnly tests.
  1207. Added ScrollBars tests.
  1208. * TextBoxTest.cs: Improve BackColor test. Added ScrollBars tests.
  1209. Improved ReadOnly tests.
  1210. 2007-03-30 Gert Driesen <[email protected]>
  1211. * FormHandleTest.cs: Enabled test for bug #81272.
  1212. 2007-03-30 Jonathan Pobst <[email protected]>
  1213. * HScrollPropertiesTest.cs, VScrollPropertiesTest.cs: Added.
  1214. 2007-03-30 Jonathan Pobst <[email protected]>
  1215. * UserControlTest.cs: Add test for CreateParams.
  1216. 2007-03-30 Gert Driesen <[email protected]>
  1217. * FormHandleTest.cs: Added test for bug #81272.
  1218. 2007-03-30 Rolf Bjarne Kvinge <[email protected]>
  1219. * MdiFormTest.cs: Added test for #79964.
  1220. 2007-03-28 Jonathan Pobst <[email protected]>
  1221. * ToolStripOverflowButtonTest.cs, ToolStripOverflowTest.cs: Disable
  1222. some tests I didn't mean to commit yet.
  1223. 2007-03-28 Jonathan Pobst <[email protected]>
  1224. * StatusStripTest.cs: Added.
  1225. * ToolStripContainerTest.cs: Added.
  1226. * ToolStripContentPanelTest.cs: Added.
  1227. * ToolStripDropDownTest.cs: Added.
  1228. * ToolStripManagerTest.cs: Added.
  1229. * ToolStripOverflowButtonTest.cs: Added.
  1230. * ToolStripOverflowTest.cs: Added.
  1231. * ToolStripPanelTest.cs: Added.
  1232. * ToolStripProgressBarTest.cs: Enable tests about MarqueeAnimationSpeed.
  1233. * ToolStripStatusLabelTest.cs: Added.
  1234. 2007-03-26 Carlos Alberto Cortez <[email protected]>
  1235. * ListViewItemTest.cs: Add tests for constructors taking
  1236. an array of strings, for the ListViewSubItem constructors,
  1237. and for the ListViewSubItemCollection.AddRange method receiving
  1238. and array of null strings.
  1239. 2007-03-25 Jonathan Pobst <[email protected]>
  1240. * ToolStripTest.cs: Fix ambiguous Category attribute.
  1241. 2007-03-25 Jonathan Pobst <[email protected]>
  1242. * ToolStripTest.cs: Mark WM decoration dependent test as NotWorking.
  1243. 2007-03-25 Jonathan Pobst <[email protected]>
  1244. * ButtonTest.cs: Add test demonstrating the behavior of ImageList.
  1245. * MenuStripTest.cs: General test suite.
  1246. * ToolStripComboBoxTest.cs: Enable tests for FlatStyle.
  1247. * ToolStripControlHostTest.cs: Form.ShowInTaskbar = false.
  1248. * ToolStripItemTest.cs: Test for method Dispose.
  1249. * ToolStripMenuItemTest.cs: Add tests for constructor and keyboard shortcuts.
  1250. * ToolStripProgressBarTest.cs: Enable previously NotWorking test.
  1251. * ToolStripTest.cs: Add tests for Overflow, Dock/Orientation, and
  1252. CreateLayoutSettings.
  1253. 2007-03-24 Jonathan Pobst <[email protected]>
  1254. * DefaultLayoutTest.cs: Enable some NotWorking tests that now
  1255. work correctly.
  1256. 2007-03-24 Jonathan Pobst <[email protected]>
  1257. * ProgressBarTest.cs, ScrollBarTest.cs, TimerTest.cs: Update
  1258. tests to pass on .Net 2.0.
  1259. 2007-03-22 Jonathan Pobst <[email protected]>
  1260. * FormTest.cs: Mark new test FormStartupPositionChangeTest as
  1261. NotWorking to fix the monobuild.
  1262. 2007-03-22 Rolf Bjarne Kvinge <[email protected]>
  1263. * MdiFormTest.cs: Make StartLocationTest NotWorking, it fails on
  1264. monobuild for unknown reasons.
  1265. * FormTest.cs: Make Location NotWorking, it fails on monobuild for
  1266. unknown reasons.
  1267. 2007-03-22 Chris Toshok <[email protected]>
  1268. * FormTest.cs: enable Location test for #80052.
  1269. 2007-03-22 Rolf Bjarne Kvinge <[email protected]>
  1270. * MdiFormTest.cs: Added a StartLocationTest, and commented out all old
  1271. StartLocationTest*s, since they are failiing on WinXP with XP
  1272. theme.
  1273. * FormTest.cs: Added tests for StartPosition.
  1274. 2007-03-21 Rolf Bjarne Kvinge <[email protected]>
  1275. * DefaultLayoutTest.cs: Fixed line endings.
  1276. * BindingSourceTest.cs: Remove a couple of warnings.
  1277. 2007-03-19 Carlos Alberto Cortez <[email protected]>
  1278. * ListViewItemTest.cs: Add test for BackColor, ForeColor,
  1279. UseItemStyleForSubItems.
  1280. 2007-03-20 Rolf Bjarne Kvinge <[email protected]>
  1281. * EventLogger.cs: Add CountEvents.
  1282. * MdiFormTest.cs: Added CloseTest.
  1283. 2007-03-19 Gert Driesen <[email protected]>
  1284. * RichBoxTest.cs: Disabled ReadOnly test until I can test it on linux.
  1285. 2007-03-19 Gert Driesen <[email protected]>
  1286. * RichBoxTest.cs: Enabled ReadOnly test.
  1287. 2007-03-19 Gert Driesen <[email protected]>
  1288. * PaintEventArgsTest.cs: Enabled tests for bug #78448 on 2.0 profile.
  1289. 2007-03-19 Jonathan Pobst <[email protected]>
  1290. * ToolStripTest.cs: Enable gert's DockSize test for bug #80762.
  1291. 2007-03-19 Rolf Bjarne Kvinge <[email protected]>
  1292. * FormHandleTest.cs: Create new forms at a few specific places + a few
  1293. more corner cases. No longer not working.
  1294. * MdiFormHandleTest.cs: These tests are working now.
  1295. * FormTest.cs: IsHandleCreated is working now, the parented tests are
  1296. not working.
  1297. 2007-03-19 Everaldo Canuto <[email protected]>
  1298. * MenuItemTest.cs: Add test for OwnerDraw (#81182).
  1299. 2007-03-19 Gert Driesen <[email protected]>
  1300. * RichTextBoxTest.cs: Marked failing test NotWorking.
  1301. 2007-03-19 Rolf Bjarne Kvinge <[email protected]>
  1302. * ControlTest.cs: Added InvokeTestParentHandle.
  1303. 2007-03-18 Gert Driesen <[email protected]>
  1304. * RichTextBoxTest.cs: Added tests for ReadOnly effect on BackColor.
  1305. * TextBoxTest.cs: Added tests for ReadOnly effect on BackColor.
  1306. 2007-03-17 Rolf Bjarne Kvinge <[email protected]>
  1307. * ComboBoxTest.cs: Added DataBindingTest.
  1308. 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
  1309. * MdiFormTest.cs: Make TopLevelTest not working until the fix is ready
  1310. to get in.
  1311. 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
  1312. * MdiFormTest.cs, ControlTest.cs: Remove a warning.
  1313. 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
  1314. * ApplicationContextTest.cs: Added NotWorking test for nested
  1315. application contexts.
  1316. * ControlHandleTest.cs: Comment out the dnd tests, they create a form
  1317. on windows that won't close until the mouse is moved. Add a few
  1318. more corner cases to the test.
  1319. * MdiFormTest.cs: Add TopLevelTest.
  1320. 2007-03-15 Chris Toshok <[email protected]>
  1321. * BindingSourceTest.cs: add another test, and mark the NotWorking
  1322. ones so that they aren't clogging up the 2.0 build.
  1323. 2007-03-15 Jonathan Pobst <[email protected]>
  1324. * DefaultLayoutTest.cs: Add test for bug #80912.
  1325. 2007-03-15 Ivan N. Zlatev <[email protected]>
  1326. * Common.cs, TestHelper.cs: Replaces all uses of the custom
  1327. WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
  1328. 2007-03-15 Chris Toshok <[email protected]>
  1329. * ControlTest.cs: add Ivan's WindowTargetTest after fixing them,
  1330. with an extra one included.
  1331. 2007-03-15 Rolf Bjarne Kvinge <[email protected]>
  1332. * FormTest.cs: Disable FormBorderStyleTest for the moment.
  1333. * DefaultLayoutTest.cs: Disable BehaviorOverriddenDisplayRectangle for the moment.
  1334. 2007-03-14 Jackson Harper <[email protected]>
  1335. * TreeViewTest.cs: Some more tests pass now.
  1336. 2007-03-14 Gert Driesen <[email protected]>
  1337. * ErrorProviderTest.cs: Enabled previously failing tests.
  1338. 2007-03-14 Andreia Gaita <[email protected]>
  1339. * TabControlTest.cs: Add tests for Deselecting, Deselected,
  1340. Selecting events.
  1341. 2007-03-14 George Giolfan <[email protected]>
  1342. * TreeViewTest.cs: Add TreeViewNodeSorterTest.
  1343. 2007-03-13 Gert Driesen <[email protected]>
  1344. * ErrorProviderTest.cs: Improved GetandSetErrorTest. Marked failing
  1345. test NotWorking. Removed extra tabs.
  1346. 2007-03-13 Jonathan Pobst <[email protected]>
  1347. * FormTest.cs: Add test for bug #80773.
  1348. 2007-03-12 Jonathan Pobst <[email protected]>
  1349. * ControlTest.cs: Add test for bug #81125.
  1350. 2007-03-12 Jonathan Pobst <[email protected]>
  1351. * FormTest.cs: Add a test showing we do not recreate the handle when
  1352. MinimizeBox or MaximizeBox is changed. [Part of bug #80640]
  1353. 2007-03-12 Jonathan Pobst <[email protected]>
  1354. * ControlTest.cs: Add test for bug #80621.
  1355. 2007-03-11 Everaldo Canuto <[email protected]>
  1356. * LinkLabelTest.cs: LinkLabel tests added.
  1357. 2007-03-10 Gert Driesen <[email protected]>
  1358. * FormHandleTest.cs: Fixed build using csc 1.x.
  1359. * MdiFormHandleTest.cs: Fixed build using csc 1.x. Removed extra tabs.
  1360. * ControlHandleTest.cs: Fixed build using csc 1.x.
  1361. * TextBoxTest.cs: Improved test for BackColor. Added test for
  1362. ForeColor.
  1363. 2007-03-10 Gert Driesen <[email protected]>
  1364. * TextBoxTest.cs: Isolate BackColor tests.
  1365. 2007-03-09 Rolf Bjarne Kvinge <[email protected]>
  1366. * FormHandleTest.cs: Added.
  1367. * MdiFormHandleTest.cs: Added.
  1368. 2007-03-08 Carlos Alberto Cortez <[email protected]>
  1369. * ListViewTest.cs: Added tests for the ListView and
  1370. Index properties of ListViewItems in VirtualMode.
  1371. * ListViewCollectionsTest.cs: Remove warning when building
  1372. tests.
  1373. 2007-03-08 Gert Driesen <[email protected]>
  1374. * FormTest.cs: Added tests for bug #80791 and #80574.
  1375. 2007-03-08 Rolf Bjarne Kvinge <[email protected]>
  1376. * SendKeysTest.cs: Fixed to not hang keyboard on Windows.
  1377. 2007-03-08 Jonathan Pobst <[email protected]>
  1378. * FormTest.cs: Add tests for bugs #80574, #80791.
  1379. 2007-03-05 Chris Toshok <[email protected]>
  1380. [merge -r72718:73765 from mwf-handle-branch]
  1381. 2007-03-05 Chris Toshok <[email protected]>
  1382. * ControlHandleTest.cs: make this build on both 1.1 and 2.0
  1383. profiles.
  1384. 2007-02-28 Chris Toshok <[email protected]>
  1385. * ControlTest.cs: Flesh out ControlInvokeTest to make sure that
  1386. the Control thread dies (that Application.Run returns, basically).
  1387. This works in isolation, but for some reason it isn't exiting when
  1388. run in concert with other tests (this test is the cause of the
  1389. hangs running the unit tests.) Marking NotWorking for the time
  1390. being. This needs to be fixed before merging back to the
  1391. mainline, imo.
  1392. 2007-03-02 Rolf Bjarne Kvinge <[email protected]>
  1393. * FormTest.cs: Added MaximizedParentedFormTest.
  1394. 2007-03-02 Carlos Alberto Cortez <[email protected]>
  1395. * ListViewCollectionsTest.cs: Added tests for the exceptions thrown
  1396. by ListViewItemCollection when virtual mode is used.
  1397. 2007-03-01 Gert Driesen <[email protected]>
  1398. * ListViewCollectionsTest.cs: Added ColumnHeader.Index tests.
  1399. * ColumnHeaderTest.cs: Added more DisplayIndex tests.
  1400. 2007-02-29 Carlos Alberto Cortez <[email protected]>
  1401. * ListViewTest.cs: Add test for VirtualMode and VirtualSize,
  1402. as well as for the exceptions they throw.
  1403. 2007-02-28 Jonathan Pobst <[email protected]>
  1404. * DefaultLayoutTest.cs: Add test for bug #80917.
  1405. 2007-02-26 Gert Driesen <[email protected]>
  1406. * ListViewCollectionsTest.cs: Added and improved tests for removing
  1407. columns and items, and clearing the collections.
  1408. * ListViewTest.cs: Improved ClearTest to also verify whether removed
  1409. columns and items are unlinked from owning ListView.
  1410. 2007-02-23 Raja R Harinath <[email protected]>
  1411. Fix compilation error
  1412. * DataGridViewRowTest.cs (System.ComponentModel): Remove unused 'using'.
  1413. 2007-02-22 Gert Driesen <[email protected]>
  1414. * DataGridViewRowTest.cs: Added tests for Height and MinimumHeight.
  1415. 2007-02-21 Gert Driesen <[email protected]>
  1416. * ComboBoxTest.cs: Added test for setting Text to null if SelecedIndex
  1417. is already -1.
  1418. 2007-02-19 Gert Driesen <[email protected]>
  1419. * ComboBoxTest.cs: Added test for Text. Added and improved tests for
  1420. FindString and FindStringExact. Improved ObjectCollection tests.
  1421. 2007-02-19 Rolf Bjarne Kvinge <[email protected]>
  1422. * ListControlTest.cs: Added test for #80794.
  1423. 2007-02-19 Rolf Bjarne Kvinge <[email protected]>
  1424. * FormTest.cs: Added NotWorking test for Form CreateParams.Style and
  1425. ExStyle and a test for parented forms.
  1426. 2007-02-18 Gert Driesen <[email protected]>
  1427. * SaveFileDialogTest.cs: Added tests for SaveFileDialog.
  1428. 2007-02-15 Jonathan Pobst <[email protected]>
  1429. * ToolStripItemTest.cs: BehaviorImageList fails on *nix due to a bug in
  1430. libgdiplus: #80842. Marked as Ignore for now, will re-enable when
  1431. bug is fixed.
  1432. 2007-02-15 Rolf Bjarne Kvinge <[email protected]>
  1433. * DateTimePickerTest.cs: Use OSVersion to determine whether to call
  1434. GetUserDefaultLCID or not, seems like the runtime crashes on some
  1435. architectures instead of throwing an exception otherwise.
  1436. 2007-02-15 Rolf Bjarne Kvinge <[email protected]>
  1437. * DateTimePickerTest.cs: Some culture dependant tests are only supposed
  1438. to run with en-US locale, so check it. On Windows call
  1439. GetUserDefaultLCID to check it, since MS DateTimePicker doesn't
  1440. honor Thread.CurrentCulture, only the Windows setting (and some
  1441. other test might have set Thread.CurrentCulture to some other
  1442. value, so the checking only this might fail). Added test for
  1443. setting invalid Text property.
  1444. * EventLogger.cs: Added. Takes an object and creates a class on the fly
  1445. that will log all the object's events.
  1446. 2007-02-14 Carlos Alberto Cortez <[email protected]>
  1447. * ListViewTest.cs: Added DisposeTest test for bug #80607.
  1448. * ColumnHeaderTest.cs: Remove the NotWorking category for
  1449. tests for bug #80607.
  1450. 2007-02-13 Everaldo Canuto <[email protected]>
  1451. * LabelTest.cs: Add asserts for CompatibleTextRendering = false
  1452. on PreferredHeight test for 2.0 profile.
  1453. 2007-02-13 Rolf Bjarne Kvinge <[email protected]>
  1454. * DateTimePickerTest.cs, ControlHandleTest.cs: Remove warnings.
  1455. 2007-02-13 Rolf Bjarne Kvinge <[email protected]>
  1456. * DataGridColumnStyleTest.cs, ColumnStyleTest.cs, LabelTest.cs,
  1457. PropertyManagerTest.cs, CurrencyManagerTest.cs,
  1458. DataGridTextBoxColumnTest.cs, UpDownTest.cs, FocusTest.cs,
  1459. GridColumnStylesCollectionTest.cs,
  1460. GridTableStylesCollectionTest.cs, TreeNodeCollectionTest.cs,
  1461. ScrollBarTest.cs, ListBoxTest.cs, TabControlTest.cs,
  1462. BindingContextTest.cs, RowStyleTest.cs: Removed warnings.
  1463. 2007-02-12 Everaldo Canuto <[email protected]>
  1464. * LabelTest.cs: "NotWorking" removed from PreferredHeight test.
  1465. 2007-02-12 Everaldo Canuto <[email protected]>
  1466. * LabelTest.cs: Rename PreferredSize test to PreferredWidth and
  1467. create PreferredHeight.
  1468. 2007-02-10 Gert Driesen <[email protected]>
  1469. * PrintDialogTest.cs: Fixed DefaultValues test on 2.0 profile.
  1470. * ToolStripTest.cs: Added test for bug #80762. Enabled ignored test.
  1471. 2007-02-09 Gert Driesen <[email protected]>
  1472. * FormTest.cs: Added tests for bug #80773.
  1473. 2007-02-09 Gert Driesen <[email protected]>
  1474. * PrintDialogTest.cs: Added test for bug #80764.
  1475. 2007-02-08 Jonathan Pobst <[email protected]>
  1476. * ToolStripItemTest.cs: Uncomment tests relating to Overflow. Add
  1477. test exploring interaction between Image, ImageIndex, and ImageKey.
  1478. 2007-02-08 Gert Driesen <[email protected]>
  1479. * FormTest.cs: Improved test for bug #80604.
  1480. 2007-02-08 Gert Driesen <[email protected]>
  1481. * ControlTest.cs: Removed use of #pragma to allow tests to be built using
  1482. csc 1.x.
  1483. 2007-02-08 Gert Driesen <[email protected]>
  1484. * LogGenerator.cs: Generate code that can be built using csc 1.x.
  1485. * ControlLogger.cs: Fixed code to compile using csc 1.x.
  1486. 2007-02-08 Rolf Bjarne Kvinge <[email protected]>
  1487. * DateTimePickerTest.cs: Created more tests for DateTimePicker, now
  1488. tests a lot of different custom formats.
  1489. 2007-02-07 Gert Driesen <[email protected]>
  1490. * DataGridViewColumnTest.cs: Added test for bug #80746.
  1491. 2007-02-07 Gert Driesen <[email protected]>
  1492. * ListBoxTest.cs: Added tests for bug #80696 and bug #80753.
  1493. 2007-02-06 Rolf Bjarne Kvinge <[email protected]>
  1494. * TimerTest.cs: Added
  1495. 2007-02-04 Gert Driesen <[email protected]>
  1496. * PaddingConverterTest.cs: Added back ConvertTo and ConvertFrom tests,
  1497. and make them pass on all cultures.
  1498. 2007-02-04 Jonathan Pobst <[email protected]>
  1499. * PaddingConverterTest.cs: Make tests non culture-dependent.
  1500. 2007-02-03 Rolf Bjarne Kvinge <[email protected]>
  1501. * TestHelper.cs: Added a helper method to remove warnings.
  1502. 2007-02-03 Rolf Bjarne Kvinge <[email protected]>
  1503. * ControlTest.cs: Removed warnings. Added CaptureTest.
  1504. * LogGenerator.cs: Added (used to generate ControlLogger and ControlLogger2).
  1505. * ControlLogger(2).cs: Added.
  1506. 2007-02-01 Everaldo Canuto <[email protected]>
  1507. * LabelTest.cs: StyleTest created to test #79537. TestHelper was used.
  1508. 2007-02-01 Everaldo Canuto <[email protected]>
  1509. * TestHelper.cs: TesHelper class added. This class will provide some
  1510. usefull methods that can be used to test Control derived classes,
  1511. at moment only static methods GetCreateParams, IsStyleSet and
  1512. IsExStyleSet is implements. A copy of WindowStyles, WindowExStyles
  1513. and Msg is also available as public to help is control tests.
  1514. 2007-02-01 Rolf Bjarne Kvinge <[email protected]>
  1515. * ControlTest.cs: Added ControlSizeTest.
  1516. 2007-01-31 Jonathan Pobst <[email protected]>
  1517. * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
  1518. Mark BehaviorAutoSize as NotWorking, it is font dependent.
  1519. 2007-01-29 Chris Toshok <[email protected]>
  1520. * ControlHandleTest.cs: make this compile against mono. we can
  1521. remove the __MonoCS__ ifdefs as we add properties. Also, split
  1522. out the Show() tests because they were failing and I wanted to see
  1523. which other tests were passing.
  1524. 2007-01-26 Jonathan Pobst <[email protected]>
  1525. * PaddingConverterTest.cs: Added.
  1526. 2007-01-26 Rolf Bjarne Kvinge <[email protected]>
  1527. * StatusBarTest.cs: Added a few more tests.
  1528. 2007-01-25 Jonathan Pobst <[email protected]>
  1529. * ControlHandleTest.cs: Added. Has tests to find exactly which
  1530. Methods and Properties create a Handle. Not added to sources file
  1531. because it's written against MS, and we're probably missing some
  1532. methods/properties.
  1533. 2007-01-25 Jonathan Pobst <[email protected]>
  1534. * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
  1535. Try to make some tests not Font/DPI dependent.
  1536. 2007-01-25 Chris Toshok <[email protected]>
  1537. * SplitterTest.cs: new tests.
  1538. 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
  1539. * ComboBoxTest.cs: Added tests for ResetText.
  1540. 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
  1541. * ComboBoxTest.cs: Add tests for new properties.
  1542. * MdiFormTest.cs: Set ShowInTaskbar = false for main forms.
  1543. 2007-01-24 Gert Driesen <[email protected]>
  1544. * FormTest.cs: Added NotWorking test for bug #80604.
  1545. * ColumnHeaderTest.cs: Added tests for bug #80607. Added test for
  1546. properties introduced in 2.0 profile.
  1547. 2007-01-24 Jonathan Pobst <[email protected]>
  1548. * ComboBoxTest.cs: Add FindStringExactMaxExceptionNet20 test.
  1549. * FormTest.cs: Mark BehaviorResizeOnBorderStyleChangedNotVisible as NotWorking,
  1550. it's values match MS only.
  1551. * LabelTest.cs: Mark AutoSizeChangedChangedTest as Ignore for 2.0 until it is
  1552. reworked.
  1553. * ToolStripTextBoxTest.cs: Mark PropertyModified as Ignore until a bug in TextBox
  1554. is fixed. Same for Constructor: A12.
  1555. 2007-01-24 Rolf Bjarne Kvinge <[email protected]>
  1556. * ControlTest.cs: Marked OnPaintDoubleBufferedTest as Interactive,
  1557. they'll only work if you actually have a display to show them on.
  1558. 2007-01-23 Everaldo Canuto <[email protected]>
  1559. * ToobarTest.cs: Comment DPI dependent asserts in ButtonSize test.
  1560. 2007-01-23 Everaldo Canuto <[email protected]>
  1561. * ToobarTest.cs: TooBar.ButtonSize tests added.
  1562. 2007-01-23 Jonathan Pobst <[email protected]>
  1563. * GridTableStylesCollectionTest.cs: Mark TestAdd as NotWorking.
  1564. There is a TODO in the DataGrid source referencing that Add should allow
  1565. multiple columns with the same name, but currently doesn't.
  1566. 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
  1567. * ControlTest.cs: Added a tests for ControlCollection and
  1568. MDI children.
  1569. 2007-01-23 Andreia Gaita <[email protected]>
  1570. * SendKeysTest.cs: Marked interactive, they're unstable
  1571. * ControlTest.cs (ControlSetTopLevelTest): TestForm marked NotWorking,
  1572. we have to see why SetTopLevel is toggling the Form's visibility.
  1573. 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
  1574. * ControlTest.cs: Make OnPaintTest NotWorking, since it only
  1575. works once in a while.
  1576. 2007-01-23 Chris Toshok <[email protected]>
  1577. * BindingSourceTest.cs: initial BindingSource tests. not built
  1578. yet.
  1579. 2007-01-23 Chris Toshok <[email protected]>
  1580. * DefaultLayoutTest.cs: make the docking tests independent of
  1581. constants relating to the form's clientrectangle bounds, since on
  1582. X it has a different value when the window isn't mapped (as in
  1583. this case).
  1584. 2007-01-23 Andreia Gaita <[email protected]>
  1585. * DefaultLayoutTest.cs: correct TestDockFillFirst and TestDockFillLast,
  1586. failing on ms.net
  1587. 2007-01-23 Andreia Gaita <[email protected]>
  1588. * SendKeysTest.cs: wrong value for Interval, should be > 0
  1589. 2007-01-23 Andreia Gaita <[email protected]>
  1590. * BindingTest.cs (BindingContextChangedTest2): Added 2.0-specific check,
  1591. was failing under ms.net.
  1592. * ComboBoxText.cs (FindStringExactMatchException): Add check for exception
  1593. only for 1.1 - was failing under ms.net
  1594. * ControlTest.cs:
  1595. - AnchorDockTest: Fix incorrect assertion #5 - was failing
  1596. under ms.net
  1597. - TestForm: Fix incorrect assertion #4 - was failing
  1598. under ms.net
  1599. * TreeNodeCollectionTest.cs: Add new Add() tests for 2.0
  1600. 2007-01-18 Jonathan Pobst <[email protected]>
  1601. * FormTest.cs: Add test for bug #80574.
  1602. 2007-01-22 Jonathan Pobst <[email protected]>
  1603. * TabControlTest.cs: Add tests for SelectTab and Selected event.
  1604. 2007-01-20 Jonathan Pobst <[email protected]>
  1605. * DefaultLayoutTest.cs: Add tests for Dock.Fill behavior
  1606. with other !Dock.Fill controls.
  1607. 2007-01-20 Jonathan Pobst <[email protected]>
  1608. * DefaultLayoutTest.cs: Add test for interactions between
  1609. setting Dock and Anchor.
  1610. 2007-01-19 Jonathan Pobst <[email protected]>
  1611. * TreeNodeTest.cs: Add test for 2.0 Name property.
  1612. 2007-01-19 Chris Toshok <[email protected]>
  1613. * DataGridTextBoxColumnTest.cs: add a couple more tests to see how
  1614. DataGrid.ReadOnly affects things.
  1615. 2007-01-19 Chris Toshok <[email protected]>
  1616. * DataGridTextBoxColumnTest.cs: mark TestUpdateUI as NotWorking,
  1617. and add a couple of tests for the overloaded ReadOnly property.
  1618. can't figure out how it's being used, maybe all it really does is
  1619. chain up to base.ReadOnly.
  1620. * DataGridColumnStyleTest.cs: add some tests to see if we should
  1621. be mucking with the ReadOnly property when the PropertyDescriptor
  1622. is set (turns out we shouldn't be).
  1623. 2007-01-18 Jonathan Pobst <[email protected]>
  1624. * FormTest.cs: Add test for bug #79959.
  1625. 2007-01-18 Rolf Bjarne Kvinge <[email protected]>
  1626. * StatusBarTest.cs: Added tests for StatusBarPanelCollection.
  1627. * StatusBarPanelTest.cs: Added tests for new properties in StatusBarPanel.
  1628. 2007-01-18 Jonathan Pobst <[email protected]>
  1629. * NotifyIconTest.cs: Add test for Tag, ContextMenuStrip.
  1630. 2007-01-18 Chris Toshok <[email protected]>
  1631. * DataGridTextBoxColumnTest.cs: add some tests (some of which aren't working on mono)
  1632. * DataGridTextBoxTest.cs: add some tests (some of which aren't working on mono)
  1633. 2007-01-16 Chris Toshok <[email protected]>
  1634. * UpDownTest.cs: add UpDownActiveControlTest.
  1635. 2007-01-16 Jonathan Pobst <[email protected]>
  1636. * ControlPropertyEventsTest.cs: Enable PropertyMinimumSize test.
  1637. * ControlTest.cs: Move ControlCollection tests to ControlCollectionTest.cs.
  1638. * EventArgsTest.cs, FlowPanelTests.cs: Change namespace to match all other tests.
  1639. * FormTest.cs: Add tests for FormClosed event and Show (IWin32Window).
  1640. * MenuStripTest.cs: Add test for MDI.
  1641. * SplitContainerTest.cs: Change namespace, remove TestNotRelaventProperties.
  1642. * ToolStripMenuItemTest.cs: Add test for MDI.
  1643. * ToolStripTest.cs: Ignore ControlStyle, Un-Ignore PropertyAutoSize.
  1644. 2007-01-16 Rolf Bjarne Kvinge <[email protected]>
  1645. * MdiFormTest.cs: Added tests for ActiveChild for mdi parents.
  1646. 2007-01-15 Everaldo Canuto <[email protected]>
  1647. * MenuTest.cs: Add test for #80006, mainmenu merge operations.
  1648. 2007-01-15 Everaldo Canuto <[email protected]>
  1649. * MenuItemTest.cs: Remove the "NotWorking" from MenuItemMerge test.
  1650. 2007-01-14 Carlos Alberto Cortez <[email protected]>
  1651. * ListViewTest.cs: Add tests for new 2.0 FindItemWithText methods.
  1652. 2007-01-13 Andreia Gaita <[email protected]>
  1653. * ControlTest.cs: Add test to check if Exception is raised when
  1654. adding a top level control (form) as a child control
  1655. 2007-01-12 Gert Driesen <[email protected]>
  1656. * ControlStyleTest.cs: Added style test for LinkLabel with text, but
  1657. no links.
  1658. 2007-01-12 Gert Driesen <[email protected]>
  1659. * FocusTest.cs: Ignore tests that rely on Form.Show () synchronously
  1660. generating WM_ACTIVATE on unix.
  1661. * FormTest.cs: Same.
  1662. 2007-01-10 Chris Toshok <[email protected]>
  1663. * FocusTest.cs: Disable a couple of tests that rely on the
  1664. focus/active control state being available directly after
  1665. form.Show() - doesn't work on X11, since form.Show shows the
  1666. window asynchronously. Also, add a large focus/enter/leave event
  1667. handling test andreia and I were using to correct problems in
  1668. ContainerControl.set_ActiveControl.
  1669. * FormTest.cs: add a test to show that even if OnActivate is
  1670. overriden and not chained up to the base class, ActiveControl is
  1671. still set. Unfortunately it doesn't work on the X11 backend
  1672. because Form.Show is necessarily an async operation.
  1673. * ApplicationTest.cs: don't show forms in the taskbar, and dispose
  1674. of them.
  1675. * ApplicationContextTest.cs: same.
  1676. 2007-01-10 Carlos Alberto Cortez <[email protected]>
  1677. * ColumnHeaderTest.cs: Add a test for settings Width to -1 and
  1678. -2 values (auto resizing).
  1679. 2007-01-10 Chris Toshok <[email protected]>
  1680. * ContainerControlTest.cs: add a test for setting ActiveControl to
  1681. a non-child control.
  1682. 2007-01-08 Jonathan Pobst <[email protected]>
  1683. * FormTest.cs: Added tests for ensuring Form.OnFormClosing is called.
  1684. 2007-01-08 Jonathan Pobst <[email protected]>
  1685. * ControlTest.cs: Added tests for 2.0 ControlCollection methods.
  1686. 2007-01-05 Gert Driesen <[email protected]>
  1687. * ControlTest.cs: Added test for bug #80456.
  1688. 2007-01-05 Jonathan Pobst <[email protected]>
  1689. * ControlPropertyEventsTest.cs: Added. These test property getters and
  1690. setters and ensure that all relevant events are called on setters for
  1691. Control.
  1692. 2007-01-04 Chris Toshok <[email protected]>
  1693. * CommonDialogsTest.cs: disable FolderBrowserDialogTest (and add a
  1694. stack trace in a comment).
  1695. * RichTextBoxTest.cs: disable FindTest.
  1696. 2007-01-04 Andreia Gaita <[email protected]>
  1697. * FormTest.cs: disabled ActivateTest
  1698. * FocusTest.cs: disabled ActiveControl_Disabled test
  1699. 2007-01-04 Carlos Alberto Cortez <[email protected]>
  1700. * ColumnHeaderTest.cs: New test.
  1701. 2007-01-04 Jonathan Pobst <[email protected]>
  1702. * CommonDialogTest.cs, CursorTest.cs, ErrorProviderTest.cs,
  1703. HelpProviderTest.cs: Add tests for Tag properties.
  1704. * LinkAreaTest.cs: Add test for ToString.
  1705. 2007-01-03 Gert Driesen <[email protected]>
  1706. * ControlTest.cs: Enabled tests after DefaultFont change. Ignore test
  1707. that is DPI-dependent.
  1708. * RichTextBoxTest.cs: Ignore test that is DPI-dependent.
  1709. * TextBoxTest.cs: Ignore test that is DPI-dependent.
  1710. 2007-01-02 Gert Driesen <[email protected]>
  1711. * ControlTest.cs: Added FontHeight test.
  1712. 2007-01-02 Gert Driesen <[email protected]>
  1713. * ListControlTest.cs: Added test for AllowSelection.
  1714. * UpDownTest.cs: MockItem is now nested class.
  1715. * ListBoxTest.cs: Added test for AllowSelection.
  1716. * CheckedListBoxTest.cs: Added tests for DisplayMember, GetItemText,
  1717. SelectionMode, Text and ValueMember.
  1718. 2007-01-01 Gert Driesen <[email protected]>
  1719. * ToolBarTest.cs: Enabled test for bug #80416.
  1720. 2006-12-31 Chris Toshok <[email protected]>
  1721. * ControlEventTest.cs: add SizeChanged to the resize/layout event
  1722. test.
  1723. 2006-12-31 Chris Toshok <[email protected]>
  1724. * ControlTest.cs: new test for Anchor/Dock interactions. Also add
  1725. tests for Control.SetTopLevel.
  1726. 2006-12-31 Andreia Gaita <[email protected]>
  1727. * ContainerControlTest.cs / FocusTest.cs: Moved Gert's
  1728. ActiveControl tests to FocusTest, for easier management.
  1729. Add Validation tests.
  1730. 2006-12-31 Gert Driesen <[email protected]>
  1731. * UpDownTest.cs: Added tests for DomainUpDown and NumericUpDown.
  1732. 2006-12-31 Gert Driesen <[email protected]>
  1733. * ToolBarTest.cs: Added test for bug #80416.
  1734. 2006-12-30 Gert Driesen <[email protected]>
  1735. * ContainerControlTest.cs: Added tests for ActiveControl.
  1736. 2006-12-30 Chris Toshok <[email protected]>
  1737. * DefaultLayoutTest.cs: add some more variants for the test for
  1738. 80336, and remove the NotWorking from the 80336 test.
  1739. * SendKeysTest.cs: mark these tests as not working with Xvfb so I
  1740. can exclude them.
  1741. 2006-12-29 Gert Driesen <[email protected]>
  1742. * DataGridTest.cs: Fixed compiler warnings.
  1743. 2006-12-29 Gert Driesen <[email protected]>
  1744. * ControlTest.cs: Marked FontTest and ResetFontTest as NotWorking
  1745. until Theme.DefaultFont change is approved.
  1746. 2006-12-29 Chris Toshok <[email protected]>
  1747. * ControlEventTest.cs: add a test to determine the ordering of
  1748. Layout/Resize events.
  1749. 2006-12-29 Gert Driesen <[email protected]>
  1750. * TreeNodeTest.cs: Fixed FullPathException test on 2.0 profile.
  1751. 2006-12-29 Gert Driesen <[email protected]>
  1752. * ControlTest.cs: Added test for Font and ResetFont.
  1753. * DataGridTest.cs: Fixed CaptionFont test on 2.0 profile.
  1754. 2006-12-29 Gert Driesen <[email protected]>
  1755. * ControlTest.cs: Improved DoubleBufferedTest.
  1756. 2006-12-28 Chris Toshok <[email protected]>
  1757. * ControlTest.cs: add a test to check whether parent.PerformLayout
  1758. is called from OnResized (it isn't).
  1759. * DefaultLayoutTest.cs: new file, add a bunch of anchor tests,
  1760. including the (not working) test case in bug #80336. Move the
  1761. docking/undocking tests here.
  1762. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  1763. * ControlTest.cs: More tests for double buffers.
  1764. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  1765. * ControlTest.cs: Added double buffering tests.
  1766. 2006-12-27 Gert Driesen <[email protected]>
  1767. * ControlTest.cs: Added DoubleBuffered test. Added IsHandleCreated
  1768. test for invisible control.
  1769. 2006-12-27 Gert Driesen <[email protected]>
  1770. * MonthCalendarTest.cs: Fixed exception tests for MaxSelectionCount,
  1771. MaxDate and MinDate on 2.0 profile. Removed extra tabs.
  1772. 2006-12-27 Jonathan Pobst <[email protected]>
  1773. * ToolStripButtonTest.cs, ToolStripComboBoxTest.cs, ToolStripControlHostTest.cs,
  1774. ToolStripItemTest.cs, ToolStripLabelTest.cs, ToolStripProgressBarTest.cs,
  1775. ToolStripSeparatorTest.cs, ToolStripTest.cs, ToolStripTextBoxTest.cs: Added.
  1776. 2006-12-27 Rolf Bjarne Kvinge <[email protected]>
  1777. * MonthCalendarTest.cs: Added test for Click and DoubleClick events.
  1778. 2006-12-27 Gert Driesen <[email protected]>
  1779. * ScrollableControlTest.cs: Added tests for AutoScroll and
  1780. AutoScrollMinSize.
  1781. 2006-12-26 Gert Driesen <[email protected]>
  1782. * ComboBoxTest.cs: Improved tests for DropDownWidth and ItemHeight.
  1783. 2006-12-26 Rolf Bjarne Kvinge <[email protected]>
  1784. * ControlTest.cs: Added NotWorking test for DoubleBuffered.
  1785. 2006-12-26 Gert Driesen <[email protected]>
  1786. * DataGridViewCellStyleTest.cs: Added tests for FormatProvider,
  1787. IsFormatProviderDefault.
  1788. * DataGridViewTest.cs: Reworked ColumnCount, ColumnHeadersHeight,
  1789. RowHeaderWidth tests. Added DefaultSize, *DefaultCellStyle tests.
  1790. 2006-12-23 Gert Driesen <[email protected]>
  1791. * DateTimePickerTest.cs: Fixed line endings.
  1792. * upDownTest.cs: Added tests for BeginInit, EndInit, UpButton, Value.
  1793. 2006-12-23 Daniel Nauck <[email protected]>
  1794. * UserControlTest.cs: Add.
  1795. 2006-12-23 Gert Driesen <[email protected]>
  1796. * ControlTest.cs: Enabled test for bug #80280.
  1797. 2006-12-21 Gert Driesen <[email protected]>
  1798. * RichTextBoxTest.cs: Added test for bug #80301.
  1799. * TextBoxTest.cs: Added test for bug #80301.
  1800. 2006-12-21 Daniel Nauck <[email protected]>
  1801. * ComboBoxTest.cs,
  1802. TextBoxTest.cs: Added AutoComplete property tests.
  1803. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  1804. * DateTimePickerTest.cs: Created.
  1805. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  1806. * MonthCalendarTest.cs:
  1807. - Enable tests again.
  1808. - Added tests for *BoldedDates.
  1809. * ControlTest.cs: Added test for BackgroundImageLayout.
  1810. 2006-12-19 Chris Toshok <[email protected]>
  1811. * DataGridViewBandTest.cs: nuke this file, as there's no way to
  1812. construct a DataGridViewBand in isolation (exception through
  1813. reflection).
  1814. 2006-12-19 Chris Toshok <[email protected]>
  1815. * RowStyleTest.cs: unit tests for RowStyle.
  1816. * ColumnStyleTest.cs: unit tests for ColumnStyle.
  1817. 2006-12-19 Carlos Alberto Cortez <[email protected]>
  1818. * ListViewCollectionsTest.cs: Added tests for the new 2.0
  1819. methods and properties (SelectedIndexCollection,
  1820. SelectedItemCollection, and ListViewSubItemCollection).
  1821. * ListViewItemTest.cs: Added test for ImageKey 2.0 property.
  1822. 2006-12-19 Gert Driesen <[email protected]>
  1823. * ListViewItemTest.cs: Added tests for ListViewSubItemCollection's
  1824. AddRange overloads.
  1825. * TreeViewTest.cs: Fixed ExpandAll tests.
  1826. 2006-12-19 Daniel Nauck <[email protected]>
  1827. * ApplicationTest.cs: Restart () test is 2.0 only.
  1828. 2006-12-19 Daniel Nauck <[email protected]>
  1829. * ApplicationTest.cs: Added test for Restart ().
  1830. 2006-12-18 Rolf Bjarne Kvinge <[email protected]>
  1831. * MonthCalendarTest.cs: Added test for DefaultMargin.
  1832. 2006-12-18 Daniel Nauck <[email protected]>
  1833. * DataGridViewAdvancedBorderStyleTest.cs,
  1834. DataGridViewRowTest.cs,
  1835. DataGridViewElementTest.cs,
  1836. DataGridViewCellTest.cs,
  1837. DataGridViewCellStyleTest.cs,
  1838. DataGridViewTest.cs: fixed NUnit obsolete warnings and
  1839. DataGridView tests against .NET 2.0
  1840. 2006-12-17 Daniel Nauck <[email protected]>
  1841. * ButtonTest.cs: Added tests for FlatButtonAppearance.
  1842. 2006-12-17 Gert Driesen <[email protected]>
  1843. * TreeViewTest.cs: Added tests for bug #80284.
  1844. 2006-12-17 Gert Driesen <[email protected]>
  1845. * ControlTest.cs: Added (notworking) test for bug #80280.
  1846. Removed extra tabs.
  1847. 2006-12-16 Andreia Gaita <[email protected]>
  1848. * TabControlTest.cs: Fixed SelectedIndex tests
  1849. for MS.NET 2.0
  1850. 2006-12-16 Andreia Gaita <[email protected]>
  1851. * SendKeysTest.cs: Test cases for SendKeys
  1852. These tests can only run in ms.net one at a time.
  1853. Since ms.net apparently hooks the keyboard to
  1854. implement this, running two tests in a row
  1855. makes the second test run before the hook
  1856. of the first test is released, effectively
  1857. hanging the keyboard. CTRL-ALT-DEL releases
  1858. the keyboard, but the test still hangs.
  1859. Running each test separately works.
  1860. 2006-12-16 Daniel Nauck <[email protected]>
  1861. * AutoCompleteStringCollectionTest.cs: new tests for AutoCompleteStringCollection.
  1862. 2006-12-16 Daniel Nauck <[email protected]>
  1863. * PaddingTest.cs: new tests for Padding.
  1864. 2006-12-15 Daniel Nauck <[email protected]>
  1865. * ListViewCollectionsTest.cs: test works now on the 1.1 profile.
  1866. * ListViewItemTest.cs: add new ListViewSubItem text property test.
  1867. 2006-12-15 Daniel Nauck <[email protected]>
  1868. * ListViewCollectionsTest.cs: new not working junk add test for ListViewItemCollection
  1869. 2006-12-15 Daniel Nauck <[email protected]>
  1870. * ListViewCollectionsTest.cs: new ListViewItemCollection AddRange tests
  1871. 2006-12-15 Daniel Nauck <[email protected]>
  1872. * ListViewCollectionsTest.cs: new ListViewItemCollection indexer test for #80199.
  1873. 2006-12-15 Daniel Nauck <[email protected]>
  1874. * ListViewGroupTest.cs: new tests for ListViewGroups.
  1875. * ListViewGroupCollectionTest.cs: new tests for ListViewGroupCollections.
  1876. 2006-12-14 Gert Driesen <[email protected]>
  1877. * TabControlTest.cs: Added tests for Control.RemoveAt.
  1878. 2006-12-13 Carlos Alberto Cortez <[email protected]>
  1879. * ListViewItemTest.cs:
  1880. * ListViewCollectionsTest.cs: Add tests for the new 2.0
  1881. ListViewItemCollection methods (IndexOfKey, ContainsKey,
  1882. new indexer overload, Find, RemoveByKey).
  1883. 2006-12-13 Gert Driesen <[email protected]>
  1884. * TextBoxTest.cs: Added test for bug #80163.
  1885. 2006-12-13 Gert Driesen <[email protected]>
  1886. * ControlTest.cs: Improved Region test.
  1887. 2006-12-12 Andreia Gaita <[email protected]>
  1888. * ControlTest.cs: Add region tests.
  1889. 2006-12-12 Rolf Bjarne Kvinge <[email protected]>
  1890. * ControlTest.cs: add tests for WM_PARENTNOTIFY.
  1891. 2006-12-11 Chris Toshok <[email protected]>
  1892. * ControlTest.cs: add some unit tests for null parameters to some
  1893. of the ControlCollection methods.
  1894. 2006-12-11 Gert Driesen <[email protected]>
  1895. * ControlTest.cs: Added test for invalid Dock value.
  1896. 2006-12-11 Andreia Gaita <[email protected]>
  1897. * TabControlTest.cs: add tests to check if SelectedIndex is
  1898. properly set if the TabControl has no pages, before and
  1899. after the handle is created
  1900. 2006-12-10 Chris Toshok <[email protected]>
  1901. * ColumnClickEventArgsTest.cs: new tests.
  1902. 2006-12-10 Gert Driesen <[email protected]>
  1903. * TabControlTest.cs: Added SelectedIndex tests.
  1904. 2006-12-08 Chris Toshok <[email protected]>
  1905. * ButtonTest.cs: add tests for DialogResult changes when setting
  1906. Form.AcceptButton and Form.CancelButton.
  1907. 2006-12-08 Chris Toshok <[email protected]>
  1908. * MenuItemTest.cs: add test for menu item events when cloning menu
  1909. items. Tests for the bug in #80183.
  1910. 2006-12-06 Chris Toshok <[email protected]>
  1911. * FormTest.cs: make sure Form.ImeMode is NoControl by default.
  1912. * ButtonTest.cs: add a unit test for Button.DefaultImeMode.
  1913. 2006-12-06 Chris Toshok <[email protected]>
  1914. * RadioButtonTest.cs: add a couple of test involving TabStop.
  1915. 2006-12-06 Chris Toshok <[email protected]>
  1916. * ImageListTest.cs: add a rather complicated series of assertions
  1917. about the imagelist ShouldSerialize/CanReset methods. these pass
  1918. on MS and mono now, though. yay.
  1919. 2006-12-06 Jackson Harper <[email protected]>
  1920. * TextBoxTest.cs: Add a test for Modified property.
  1921. - We need to put something on the clipboard before we can paste.
  1922. 2006-12-04 Jackson Harper <[email protected]>
  1923. * TextBoxTest: More of these tests work now.
  1924. - Add a test to ensure that recieving focus selects all of the
  1925. text
  1926. 2006-12-04 Chris Toshok <[email protected]>
  1927. * PrintDialogTest.cs: add [Category("Printing")] to all these
  1928. tests so I can exclude them.
  1929. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  1930. * StatusBarPanelTest.cs: Added a test for invalid
  1931. minimum widths.
  1932. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  1933. * MdiFormTest.cs: Change a few tests to dispose of
  1934. the form when the test is finished.
  1935. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  1936. * MdiFormTest.cs: Added a few NotWorking tests for
  1937. initial form location.
  1938. 2006-12-04 Everaldo Canuto <[email protected]>
  1939. * LabelTest.cs: Add tests for sizes, test for bug #80137.
  1940. 2006-12-01 Rolf Bjarne Kvinge <[email protected]>
  1941. * MdiFormTest.cs: All current NotWorking tests are now
  1942. working, added a few more tests.
  1943. 2006-12-01 Gert Driesen <[email protected]>
  1944. * CurrencyManagerTest.cs: Added test for bug #80107.
  1945. 2006-12-01 Gert Driesen <[email protected]>
  1946. * DataGridTest.cs: Fixed build.
  1947. 2006-12-01 Gert Driesen <[email protected]>
  1948. * DataGridTest.cs: Added tests for Font, CaptionFont and HeaderFont.
  1949. 2006-12-01 Everaldo Canuto <[email protected]>
  1950. * MenuTest.cs: Tag property assert for 2.0 profile.
  1951. 2006-11-30 Everaldo Canuto <[email protected]>
  1952. * ToolBarTest.cs:
  1953. - Remove ButtonSize.Width and ButtonSize.Height assert because
  1954. it depends of system metrics and diferent fonts can cause
  1955. diferent sizes.
  1956. - Remove "NotWorking" mark from ToolBarPropertyTest, this test
  1957. now must works well.
  1958. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  1959. * MessageTest.cs: Added test for ToString.
  1960. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  1961. * MdiFormTest.cs: Text_ChildClose is no longer NotWorking.
  1962. 2006-11-30 Gert Driesen <[email protected]>
  1963. * MenuItemTest.cs: Added test for Text property.
  1964. 2006-11-29 Chris Toshok <[email protected]>
  1965. * BindingTest.cs: add two new tests.
  1966. 2006-11-28 Rolf Bjarne Kvinge <[email protected]>
  1967. * TrackBar.cs: Changed SizeTest and OrientationTest
  1968. to work on MS with both WinXP theme and Win2K theme.
  1969. 2006-11-26 Gert Driesen <[email protected]>
  1970. * MdiFormTest.cs: Fixed test on (MS) 2.0 profile.
  1971. 2006-11-26 Gert Driesen <[email protected]>
  1972. * ControlStylesTest.cs: Fixed GetStyle for 2.0 profile.
  1973. 2006-11-26 Gert Driesen <[email protected]>
  1974. * FormTest.cs: Added test for bug #80052.
  1975. 2006-11-25 Gert Driesen <[email protected]>
  1976. * MdiFormTest.cs: Added test for bug #80036.
  1977. 2006-11-24 Gert Driesen <[email protected]>
  1978. * MdiFormTest.cs: Added NotWorking test for Form.Text.
  1979. 2006-11-23 Gert Driesen <[email protected]>
  1980. * FormTest.cs: Added test for bug #80020.
  1981. * MdiFormTest.cs: Fixed typo, added additonal info.
  1982. 2006-11-23 Gert Driesen <[email protected]>
  1983. * MdiFormTest.cs: Improved Text test to also verify behavior when
  1984. Text of MDI child or container is empty. Added NotWorking test for
  1985. Text after MDI is maximized. Added comment with existing NotWorking
  1986. test for ActiveMdiChild.
  1987. 2006-11-23 Gert Driesen <[email protected]>
  1988. * ToolBarTest.cs: Added test for bug #79863. Fixed and enabled
  1989. ToStringTest.
  1990. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  1991. * ControlTest.cs: Added tests for #79999.
  1992. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  1993. * MdiFormTest.cs: Added tests for WindowState (mdi
  1994. children) and Text (mdi parent with maximized mdi
  1995. children).
  1996. 2006-11-13 Gert Driesen <[email protected]>
  1997. * ControlEventTest.cs: Added tests for Invalidated event.
  1998. * TreeNodeCollectionTest.cs: Added IList indexer tests.
  1999. 2006-11-12 Gert Driesen <[email protected]>
  2000. * TextBoxTest.cs: Added (NotWorking) test for bug #79909.
  2001. 2006-11-11 Gert Driesen <[email protected]>
  2002. * TreeViewTest.cs: Added (NotWorking) tests for BeforeSelect event.
  2003. 2006-11-09 Gert Driesen <[email protected]>
  2004. * ListViewEventTest.cs: Added tests for SelectedIndexChanged event.
  2005. * UpDownTest.cs: Fixed ToStringTest.
  2006. 2006-11-09 Alexander Olk <[email protected]>
  2007. * CommonDialogsTest.cs: Added
  2008. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  2009. * StatusBarPanelTest.cs: Added tests for bug #79842
  2010. and tests for default properties.
  2011. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  2012. * TrackBarTest.cs: Added tests for bug #79718.
  2013. 2006-11-08 Gert Driesen <[email protected]>
  2014. * TextBoxTest.cs: Added test for bug #79851.
  2015. 2006-11-07 Gert Driesen <[email protected]>
  2016. * TabControlTest.cs: Added test for bug #79847.
  2017. 2006-11-04 Chris Toshok <[email protected]>
  2018. * ControlTest.cs: enable a bunch more of these on linux, and split
  2019. out problematic areas into smaller NotWorking tests.
  2020. 2006-11-04 Chris Toshok <[email protected]>
  2021. * FormTest.cs: add a few more tests to determine various aspects
  2022. of the Close() method.
  2023. 2006-11-04 Chris Toshok <[email protected]>
  2024. * FormTest.cs: add a test to more accurately test for bug #79155
  2025. (make sure an ObjectDisposedException is thrown if you Show() a
  2026. Form you just Close()'d).
  2027. 2006-11-04 Gert Driesen <[email protected]>
  2028. * TreeNodeCollectionTest.cs: Added tests for TreeNodeCollection.
  2029. 2006-11-04 Gert Driesen <[email protected]>
  2030. * ComboBoxTests.cs: Moved to correct namespace. Added test for bug
  2031. #79812. Added (NotWorking) SelectedText tests.
  2032. 2006-11-01 Gert Driesen <[email protected]>
  2033. * TextBoxTest.cs: Added tests for part of bug #79799.
  2034. 2006-11-01 Gert Driesen <[email protected]>
  2035. * ControlTest.cs: Fixed build using csc 1.x.
  2036. 2006-10-30 Alexander Olk <[email protected]>
  2037. * PictureBoxTest.cs: Enable the previously not working
  2038. ToStringMethodTest and move the not working Image property
  2039. test to its own method.
  2040. * UpDownTest.cs: Added
  2041. 2006-10-29 Chris Toshok <[email protected]>
  2042. * ControlTest.cs: correct namespace and add TopLevelControlTest
  2043. for bug #79781.
  2044. 2006-10-29 Alexander Olk <[email protected]>
  2045. * FormTest.cs: Fix typo.
  2046. 2006-10-13 Gert Driesen <[email protected]>
  2047. * PropertyGridTest.cs: Enabled previously not-working tests.
  2048. 2006-10-13 Gert Driesen <[email protected]>
  2049. * PropertyGridTest.cs: Added some tests for PropertyGrid.
  2050. 2006-10-13 Andreia Gaita <[email protected]>
  2051. * FocusTest.cs: add more test cases for GetNextControl.
  2052. see #78650
  2053. 2006-10-11 Chris Toshok <[email protected]>
  2054. * ToolBarTest.cs: add test for ToolBarButton rectangles.
  2055. 2006-10-06 Gert Driesen <[email protected]>
  2056. * ListViewCollectionsTest.cs: Added tests for bug #79415.
  2057. * ListViewTest.cs: Enabled test for bug #79416.
  2058. 2006-10-03 Sebastien Pouliot <[email protected]>
  2059. * ContainerControlTest.cs: New. Add a few test cases for
  2060. GetContainerControl method.
  2061. 2006-10-02 Sebastien Pouliot <[email protected]>
  2062. * ButtonTest.cs: Activate tests for ButtonBaseAccessibleObject.
  2063. 2006-10-02 Sebastien Pouliot <[email protected]>
  2064. * ButtonTest.cs: Added new test cases for ButtonBaseAccessibleObject
  2065. as NonWorking (see bug #79552). Fixed line-endings.
  2066. 2006-09-22 Sebastien Pouliot <[email protected]>
  2067. * SystemInformationTest.cs: Add tests case for MenuFont.
  2068. 2006-09-18 Jonathan Pobst <[email protected]>
  2069. * EventArgsTest.cs: Add tests for ToolStrip*EventArgs.
  2070. 2006-09-13 Jonathan Pobst <[email protected]>
  2071. * SplitContainerTests.cs: Added.
  2072. 2006-09-11 Gert Driesen <[email protected]>
  2073. * ListViewTest.cs: Added test for bug #79076. Added tests for
  2074. sorting bug fixes. Added tests for CheckBoxes and MultiSelect (marked
  2075. NotWorking).
  2076. * ListViewCollectionsTest.cs: Added tests for SelectedItemCollection
  2077. and ListViewItemCollection fixes.
  2078. 2006-09-01 Carlos Alberto Cortez <[email protected]>
  2079. * ComboBoxTest.cs: Add tests for sorting and selection handling.
  2080. Deal with a couple of exception mismatches in 2_0.
  2081. 2006-08-21 Carlos Alberto Cortez <[email protected]>
  2082. * ComboBoxTest.cs: Add tests for CB.ObjectCollection
  2083. methods throwing ArgumentNullException.
  2084. 2006-08-18 Carlos Alberto Cortez <[email protected]>
  2085. * ComboBoxTest.cs: Add tests for adding/modifying null items
  2086. in ObjectCollection.
  2087. * ListBox.cs: Likewise.
  2088. 2006-08-08 Chris Toshok <[email protected]>
  2089. * GridTableStylesCollectionTest.cs: make this fixture public so
  2090. it's actually included, and add a test for changing the
  2091. MappingName of a constituent TableStyle.
  2092. 2006-07-30 Carlos Alberto Cortez <[email protected]>
  2093. * PrintDialogTest.cs: Added.
  2094. 2006-07-21 Matt Hargett ([email protected])
  2095. * ControlTest.cs: Added tests for MinimumSize/MaximumSize
  2096. 2006-07-20 Carlos Alberto Cortez <[email protected]>
  2097. * ListControlTest.cs: Added DataSourceWrongArgumentType method
  2098. to test the exception being thrown.
  2099. 2006-07-18 Carlos Alberto Cortez <[email protected]>
  2100. * ListControlTest.cs: Added.
  2101. 2006-07-14 Jonathan Pobst <[email protected]>
  2102. * EventArgsTest.cs: Added
  2103. 2006-07-10 Chris Toshok <[email protected]>
  2104. * DataGridTest.cs: make this class public so it shows up in the
  2105. list of fixtures (and its tests get run).
  2106. * CurrencyManagerTest.cs: add a test that just spews properties
  2107. about the currency manager and the datasource, as well as a test
  2108. for the finalType field.
  2109. 2006-07-07 Chris Toshok <[email protected]>
  2110. * DataGridTableStyleTest.cs: couple more tests.
  2111. 2006-07-06 Peter Dennis Bartok <[email protected]>
  2112. * ControlTest.cs: Added "LinkLabel with link" test
  2113. 2006-06-30 Chris Toshok <[email protected]>
  2114. * DataGridTableStyleTest.cs: add a bunch of mirrored tests for the
  2115. default DataGridTableStyle.
  2116. 2006-06-23 Chris Toshok <[email protected]>
  2117. * PropertyManagerTest.cs: new tests regarding the
  2118. [Related]PropertyManager class.
  2119. 2006-06-19 Peter Dennis Bartok <[email protected]>
  2120. * ControlTest.cs: Added tests for enabled state inheritance
  2121. 2006-06-19 Chris Toshok <[email protected]>
  2122. * CurrencyManagerTest.cs: add some tests for related currency
  2123. managers.
  2124. * BindingContextTest.cs: add a test for
  2125. BindingContext.CollectionChanged -=. Also add a test for passing
  2126. null for data_member to BindingContext.Contains.
  2127. 2006-06-06 Carlos Alberto Cortez <[email protected]>
  2128. * FormTest.cs: Add SetDialogResult, to test Form.DialogResult
  2129. setter.
  2130. 2006-06-01 Chris Toshok <[email protected]>
  2131. * CurrencyManagerTest.cs: add a few tests to see what events are
  2132. being emitted in which order from AddNew, CancelCurrentEdit and
  2133. EndCurrentEdit.
  2134. 2006-05-31 Peter Dennis Bartok <[email protected]>
  2135. * LabelTest.cs:
  2136. - Added (still unused) fuzzy compare for events
  2137. - Disabled event order tests, they are too strict
  2138. * ScrollBarTest.cs: Disabled event order tests, are too strict
  2139. 2006-05-25 Jackson Harper <[email protected]>
  2140. * TreeViewTest.cs: Add a couple of default properties. Put in
  2141. correct namespace.
  2142. * TabControlTest.cs: Put in correct namespace.
  2143. 2006-05-25 Atsushi Enomoto <[email protected]>
  2144. * BindingContextTest.cs : added more tests for Item, Contains()
  2145. and GetEnumerator().
  2146. 2006-05-18 Sebastien Pouliot <[email protected]>
  2147. * PaintEventArgsTest.cs: New. Unit tests for PaintEventArgs.
  2148. 2006-05-18 Atsushi Enomoto <[email protected]>
  2149. Some compat fixes found by make run-test-ondotnet:
  2150. * ListBoxTest.cs : they don't throw exceptions.
  2151. * RichTextBoxTest.cs,
  2152. ScrollBarTest.cs,
  2153. ComboBoxTest.cs,
  2154. ComboBoxTests.cs : Commented some lines out since they are
  2155. environment (especially desktop theme) dependent.
  2156. TabControlTest.cs : SetSelectedIndex() was my bad that the test
  2157. needed the tab control be drawn to pass the test.
  2158. Some tests are env. dependent (as well as others).
  2159. 2006-05-16 Miguel de Icaza <[email protected]>
  2160. * DataGridTest.cs: Add a test case based on 78420, confirm that
  2161. the fix works.
  2162. 2006-05-15 Atsushi Enomoto <[email protected]>
  2163. * TabControlTest.cs : added test for bug #78395.
  2164. 2006-04-16 Gert Driesen <[email protected]>
  2165. * TabControlTest.cs: Added test for bug #78121. Marked failing tests
  2166. NotWorking. Set eol-style to native.
  2167. 2006-04-12 Peter Dennis Bartok <[email protected]>
  2168. * ControlTest.cs: Added backcolor tests related to transparency
  2169. (bug #78026)
  2170. 2006-03-31 Peter Dennis Bartok <[email protected]>
  2171. * ControlTest.cs: Ignore Invoke test, it hangs
  2172. 2006-02-28 Matt Hargett ([email protected])
  2173. * ComboBoxTests.cs: Added
  2174. 2006-02-02 Peter Dennis Bartok <[email protected]>
  2175. * ControlTest.cs: Added test for layout nesting
  2176. * MonthCalendarTest.cs: Fixed typo in class name
  2177. 2005-12-01 Jackson Harper <[email protected]>
  2178. * TreeNodeTest.cs: TreeNodeTest.cs : Added namespace +
  2179. SingleNodeIndexTest.
  2180. - Fixed warning CS0219. Patches by Dieter Bremes
  2181. 2005-11-12 Pedro Martínez Juliá <[email protected]>
  2182. * DataGridViewElementTest.cs DataGridViewBandTest.cs
  2183. DataGridViewCellTest.cs DataGridViewAdvancedBorderStyleTest.cs
  2184. DataGridViewCellStyleTest.cs DataGridViewRowTest.cs DataGridViewTest.cs:
  2185. Add some DataGridView tests.
  2186. 2005-11-11 Ankit Jain <[email protected]>
  2187. * RichTextBoxTest.cs: Fix typos.
  2188. 2005-11-09 Peter Dennis Bartok <[email protected]>
  2189. * RichTextBoxTest.cs: Added Find() tests
  2190. 2005-11-05 Kornél Pál <[email protected]>
  2191. * LabelPropertyTest.cs: Updated product version to 1.1.4322.2032 (1.1 SP1).
  2192. 2005-10-18 Jordi Mas i Hernandez <[email protected]>
  2193. * ListViewCollectionsTest.cs: Add tests for the ListView Collections
  2194. 2005-10-17 Ritvik Mayank <[email protected]>
  2195. * TabControlTest.cs : Added test case for TabControl
  2196. 2005-10-16 Ritvik Mayank <[email protected]>
  2197. * TrackBarTest.cs : Added test case for TrackBar
  2198. 2005-10-16 Jordi Mas i Hernandez <[email protected]>
  2199. * DataGridBoolColumn.cs: fixes warning
  2200. 2005-10-10 Peter Dennis Bartok <[email protected]>
  2201. * GenerateControlStyleTest.cs, ControlStyleTest.cs: Flipped
  2202. order for want and actual to avoid misleading errors
  2203. 2005-10-07 Peter Dennis Bartok <[email protected]>
  2204. * GenerateControlStyleTest.cs: Code to auto-generate the
  2205. source file ControlStyleTest.cs
  2206. * ControlStyleTest.cs: Tests for testing ControlStyles
  2207. 2005-09-28 Hisham Mardam Bey <[email protected]>
  2208. * Common.cs : Add common things here.
  2209. * LabelTest.cs : Remove common declarations to Common.cs
  2210. * ScrollBarTest.cs : Remove common declarations to Common.cs
  2211. Add more propery range / exception tests
  2212. Add more event order tests
  2213. Fix Mouse tests.
  2214. Add event arg tests.
  2215. 2005-09-27 Hisham Mardam Bey <[email protected]>
  2216. * LabelTest.cs : Added more event tests (external handlers)
  2217. Added event arg checks
  2218. Fixed OnPaint tests.
  2219. Seperated invalidation tests.
  2220. 2005-09-26 Hisham Mardam Bey <[email protected]>
  2221. * ScrollBarTest.cs : Add more tests for event firing order
  2222. Messages to simulate mouse events
  2223. 2005-09-23 Ritvik Mayank <[email protected]>
  2224. * ErrorProviderTest.cs : Added test case for ErrorProvider
  2225. 2005-09-23 Hisham Mardam Bey <[email protected]>
  2226. * LabelTest.cs : Added messages to simulate Key* events.
  2227. Key* events have tests now.
  2228. 2005-09-22 Hisham Mardam Bey <[email protected]>
  2229. * LabelTest.cs : Implement event firing order tests.
  2230. * ScrollBarTest.cs : Implement event firing order tests.
  2231. 2005-09-22 Jordi Mas i Hernandez <[email protected]>
  2232. * MenuTest.cs: Fixes some tests
  2233. * MenuItemTest.cs: New unit test
  2234. 2005-09-21 Hisham Mardam Bey <[email protected]>
  2235. * LabelTest.cs : Several new tests.
  2236. * ScrollBarTest.cs : Several new tests.
  2237. * bitmaps : added dir containing images for tests.
  2238. 2005-09-21 Jordi Mas i Hernandez <[email protected]>
  2239. * ListViewItemTest.cs: New unit test
  2240. 2005-09-20 Jordi Mas i Hernandez <[email protected]>
  2241. * ButtonTest.cs, LabelTest.cs, ControlEventTest.cs, ScrollBarTest.cs,
  2242. LabelPropertyTest.cs, ProgressBarTest.cs, StatusBarTest.cs,
  2243. ImageListTest.cs, MonthCalendarTest.cs, ControlTest.cs,
  2244. ListBoxEventTest.cs, TreeViewTest.cs, TestImageIndexConverter.cs,
  2245. ToolBarTest.cs, MenuTest.cs
  2246. Remove all the tests that are giving errors. All of them should
  2247. be reviewed. Right now having this text throwing 40 errors do not
  2248. help at all to do regression testing. Peter has already assigned
  2249. a group of controls to every developer that will be tested and
  2250. reviewed.
  2251. 2005-09-20 Ritvik Mayank <[email protected]>
  2252. * PictureBoxTest.cs : Test case for PictureBox
  2253. 2005-09-08 Ritvik Mayank <[email protected]>
  2254. * MonthCalendarTest.cs : Test case for MonthCalendar
  2255. 2005-08-29 Ritvik Mayank <[email protected]>
  2256. * ProgressBarTest.cs : Test case for ProgressBar
  2257. * ToolBarTest.cs : Test case for ToolBar
  2258. * ToolTipTest.cs : Test case for ToolTip
  2259. * RichTextBoxTest.cs : Test case for RichTextBox
  2260. 2005-08-16 Martin Baulig <[email protected]>
  2261. * ControlTest.cs: Renamed namespace `MWF.Test' -> `MWF.MonoTest'
  2262. to make it compile.
  2263. 2005-08-16 Ritvik Mayank <[email protected]>
  2264. * ScrollBarTest.cs, ImageListTest.cs, CheckedListBoxTest.cs, CheckedListBoxEventTest.cs, MenuTest.cs,
  2265. ListViewTest.cs: enhancement and cleanup
  2266. 2005-08-16 Ritvik Mayank <[email protected]>
  2267. * ImageListTest.cs : Test case for ImageList
  2268. * RadioButtonTest.cs : Test case for RadioButton
  2269. * ScrollBarTest.cs : Test case for ScrollBar
  2270. * StatusBatTest.cs : Test case for StatusBar
  2271. 2005-08-10 Ritvik Mayank <[email protected]>
  2272. * ControlTest.cs : Commented out test for GetChildAtPointSkip (feature not
  2273. yet implemented)
  2274. 2005-08-08 Jordi Mas i Hernandez <[email protected]>
  2275. * ComboBoxTest.cs: new tests for properties, exceptions, and colletions
  2276. * ListBoxTest.cs: new tests for properties, exceptions, and colletionss
  2277. 2005-08-06 Ritvik Mayank <[email protected]>
  2278. * ComboBoxTest.cs, ListBoxTest.cs : Cleanup, added few more tests
  2279. 2005-08-05 Ritvik Mayank <[email protected]>
  2280. * ButtonTest.cs, ImageListTest.cs, ControlEventTest.cs,
  2281. LabelPropertyTest.cs, CheckBoxTest.cs, ListBoxEventTest.cs,
  2282. CheckBoxEventTest.cs, CheckedListBoxTest.cs, TextBoxTest.cs,
  2283. CheckedListBoxEventTest.cs, FormTest.cs, MenuTest.cs,
  2284. FormEventTest.cs, GroupBoxTest.cs, ListViewTest.cs,
  2285. ListViewEventTest.cs :
  2286. Cleanup, Ignored tests which need manual intervention,
  2287. work still in progress.
  2288. 2005-08-05 Jordi Mas i Hernandez <[email protected]>
  2289. * DataGridTextBoxColumnTest.cs: test fixes and enhancements
  2290. * GridTableStylesCollectionTest.cs: test fixes and enhancements
  2291. * DataGridTest.cs: test fixes and enhancements
  2292. * DataGridCellTest.cs: New unit test
  2293. * GridColumnStylesCollectionTest.cs: test fixes and enhancements
  2294. * DataGridTableStyleTest.cs: test fixes and enhancements
  2295. 2005-08-04 Peter Dennis Bartok <[email protected]>
  2296. * ControlTest.cs: Cleanup, fixed commented out tests with syntax
  2297. errors, streamlined a few tests, added full tab order test, still
  2298. work in progress
  2299. 2005-08-02 Ritvik Mayank <[email protected]>
  2300. * FormTest.cs : Test case for Form
  2301. * GropBoxTest : Test case for GroupBox
  2302. * MenuTest.cs : Test case for Menu
  2303. * ImageListTest.cs : Test case for ImageList
  2304. 2005-07-26 Ritvik Mayank <[email protected]>
  2305. * ListViewTest.cs : Test case for ListView
  2306. * ListViewEventTest.cs : Test case for ListView events
  2307. * ComboBoxTest.cs : Test case for ComboBox
  2308. * FormEventTest.cs : Test case for Form events
  2309. 2005-07-12 Ritvik Mayank <[email protected]>
  2310. * CheckBoxTest.cs : Test case for CheckBox
  2311. * CheckBoxEventTest.cs : Test case for CheckBox events
  2312. * CheckedListBoxTest.cs : Test case for CheckedListBox
  2313. * CheckedListBoxEventTest.cs : Test case for CheckedListBox events
  2314. 2005-07-05 Jordi Mas i Hernandez <[email protected]>
  2315. * DataGridTextBoxColumnTest.cs: Test case
  2316. * GridTableStylesCollectionTest.cs: Test case
  2317. * DataGridTest.cs: Test case
  2318. * GridColumnStylesCollectionTest.cs: Test case
  2319. * DataGridTableStyleTest.cs: Test case
  2320. 2005-07-04 Ritvik Mayank <[email protected]>
  2321. * ListBoxTest.cs : Test Cases for ListBox Properties and Methods
  2322. * ListBoxEventTest.cs : Test Cases for ListBox Events
  2323. 2005-06-13 Ritvik Mayank <[email protected]>
  2324. * TextBoxTest.cs : Test Cases for TextBox
  2325. * BUttonTest.cs : Test Cases for Buttons
  2326. 2005-05-11 Ritvik Mayank <[email protected]>
  2327. * ControlEventTest.cs : Test Cases for Events
  2328. 2005-05-02 Ritvik Mayank <[email protected]>
  2329. * ControlTest.cs : Minor modifications
  2330. 2005-05-02 Ritvik Mayank <[email protected]>
  2331. * ControlTest.cs : Test for Control
  2332. 2005-04-25 Ritvik Mayank <[email protected]>
  2333. * LabelPropertyTest.cs : Test for Label
  2334. 2004-11-29 Marek Safar <[email protected]>
  2335. * TreeViewTest.cs : Test for TreeView
  2336. * TreeNodeTest.cs : Test for TreeNode
  2337. 2004-11-29 Ravindra <[email protected]>
  2338. * ImageIndexConverter.cs : Test for ImageIndexConversion.