ChangeLog 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  1. 2007-05-07 Jonathan Pobst <[email protected]>
  2. * ControlTest.cs: Tests demonstrating Control.AutoSize from Stefan Noack.
  3. 2007-05-07 Jonathan Pobst <[email protected]>
  4. * ToolStripManagerTest.cs: Add test for bug #81477.
  5. 2007-05-04 Jonathan Pobst <[email protected]>
  6. * ControlTest.cs: Expand GetChildAtPointTest to cover 2.0 cases.
  7. 2007-05-04 Rolf Bjarne Kvinge <[email protected]>
  8. Added.
  9. 2007-05-04 Rolf Bjarne Kvinge <[email protected]>
  10. * MdiFormTest.cs: Added DeactivatedEventTest.
  11. 2007-05-03 Chris Toshok <[email protected]>
  12. * DataBindingTests.cs: enable TestInsertRowAtCurrent in the 2.0
  13. profile as well.
  14. 2007-05-03 Jonathan Pobst <[email protected]>
  15. * ApplicationTest.cs: Add a test for RaiseIdle.
  16. 2007-05-01 Frederik Carlier <[email protected]>
  17. * TreeNodeCollectionTest.cs: Add Unit tests for ContainsKey and
  18. IndexOfKey methods.
  19. 2007-04-30 Gert Driesen <[email protected]>
  20. * DataGridViewColumnTest.cs: Added test for bug #81464, improved
  21. existing tests.
  22. * DataGridViewTextBoxCellTest.cs: Added test for Value.
  23. * RichTextBoxTest.cs: Added test for bug #80626.
  24. * TabControlTest.cs: Added test for TabPageCollection indexer.
  25. * TextBoxTest.cs: Enabled test for bug #80626.
  26. 2007-04-29 Andreia Gaita <[email protected]>
  27. * TabControlTest.cs: Add more 2.0 select and deselect tab tests.
  28. 2007-04-28 Gert Driesen <[email protected]>
  29. * DataBindingTest.cs: Avoid using anonymous methods to allow tests to
  30. build using csc 1.x.
  31. * CurrencyManagerTest.cs: Same.
  32. 2007-04-24 Alan McGovern <[email protected]>
  33. * BindingNavigatorTest.cs: Ignored failing test until a bug gets fixed
  34. 2007-04-27 Chris Toshok <[email protected]>
  35. * CurrencyManagerTest.cs, DataBindingTests.cs,
  36. BindingManagerBaseTest.cs, BindingSourceTest.cs, BindingTest.cs:
  37. lots of misc changes.
  38. 2007-04-26 Jonathan Pobst <[email protected]>
  39. * ToolStripTest.cs: Fix the failing MethodGetNextItem test.
  40. 2007-04-25 Rolf Bjarne Kvinge <[email protected]>
  41. * FormHandleTest.cs, ControlEventTest.cs, MenuStripTest.cs,
  42. ProgressBarTest.cs, RichTextBoxTest.cs, ListViewEventTest.cs,
  43. TreeViewTest.cs, ColumnHeaderTest.cs, ApplicationContextTest.cs,
  44. MdiFormTest.cs, MenuItemTest.cs, TextBoxTest.cs, ListBoxTest.cs,
  45. ToolStripTest.cs, ToolStripMenuItemTest.cs, ControlTest.cs,
  46. ToolBarTest.cs: Dispose of the 61 forms we were keeping open while
  47. running the tests.
  48. * ApplicationTest.cs: Dispose of the 61 forms we were keeping open
  49. while running the tests. Added OpenFormsTest.
  50. * FormTest.cs: Dispose of the 61 forms we were keeping open while
  51. running the tests. Added DialogOwnerTest.
  52. 2007-04-24 Alan McGovern <[email protected]>
  53. * BindingNavigatorTest.cs: Added more tests to check more behaviour
  54. 2007-04-24 Jonathan Pobst <[email protected]>
  55. * ToolStripDropDownTest.cs: Add Assert for default orientation.
  56. * ToolStripTest.cs: Enable tests for CanOverflow and DefaultDropDownDirection.
  57. Add test for GetNextItem.
  58. 2007-04-24 Rolf Bjarne Kvinge <[email protected]>
  59. * MdiFormTest.cs: Added tests for #81409.
  60. 2007-04-24 Rolf Bjarne Kvinge <[email protected]>
  61. * MdiFormTest.cs: Added tests for #81409.
  62. 2007-04-24 Raja R Harinath <[email protected]>
  63. * BindingNavigatorTest.cs (CheckStandardItems): Avoid use of NUnit
  64. API newer than present in the tree.
  65. 2007-04-24 Alan McGovern <[email protected]>
  66. * BindingNavigatorTest.cs: Initial tests
  67. 2007-04-23 Chris Toshok <[email protected]>
  68. * TestHelper.cs: move RunningOnUnix here.
  69. * FocusTest.cs: use TestHelper.RunningOnUnix.
  70. * FormTest.cs: use TestHelper.RunningOnUnix.
  71. 2007-04-23 Jonathan Pobst <[email protected]>
  72. * TableLayoutTest.cs: Add a bunch of tests I thought I had lost
  73. before I lose them for real.
  74. 2007-04-21 Jonathan Pobst <[email protected]>
  75. * DefaultLayoutTest.cs: Added test for bug #81397.
  76. 2007-04-21 Gert Driesen <[email protected]>
  77. * RichTextBoxTest.cs: Added test for bug #80620.
  78. * TreeViewTest.cs: Added test for bug #80620.
  79. * ListViewTest.cs: Added test for bug #80620.
  80. * UpDownTest.cs: Added test for bug #80620.
  81. * TextBoxTest.cs: Enabled test for bug #80620.
  82. 2007-04-19 Jonathan Pobst <[email protected]>
  83. * GroupBoxTest.cs: Add tests for default properties and
  84. DisplayRectangle.
  85. 2007-04-18 Gert Driesen <[email protected]>
  86. * FormTest.cs: Enabled test for bug #80773.
  87. 2007-04-17 Chris Toshok <[email protected]>
  88. * BindingTest.cs: remove the NotWorking from
  89. BindingContextChangedTest2, and add a new, NotWorking test.
  90. 2007-04-16 Jonathan Pobst <[email protected]>
  91. * ButtonTest.cs, ToolStripItemTest.cs: Remove image stretching
  92. from ImageList tests and reenable tests.
  93. 2007-04-13 Jonathan Pobst <[email protected]>
  94. * ToolStripItemTest.cs: Enable a bunch of tests for recently
  95. implemented properties.
  96. * ToolStripManager.cs: Add tests for Merge and RevertMerge.
  97. 2007-04-09 Gert Driesen <[email protected]>
  98. * DataGridTextBoxColumnTest.cs: Added IsInEditOrNavigateMode tests.
  99. Enabled test after IsInEditOrNavigateMode fix.
  100. 2007-04-09 Gert Driesen <[email protected]>
  101. * DataGridTextBoxColumnTest.cs: Added tests for IFormattable and
  102. TypeConverter usage in Edit and Commit.
  103. 2007-04-08 Gert Driesen <[email protected]>
  104. * ListViewItemTest.cs: Added several ctor tests. Added tests to verify
  105. throws exceptions. Added tests for ListViewSubItemCollection's Clear
  106. and RemoteAt methods that prove that we need to ensure there's always
  107. at least one subitem.
  108. 2007-04-07 Gert Driesen <[email protected]>
  109. * ProgressBarTest.cs: Added ForeColor and ResetForeColor tests.
  110. * TextBoxTest.cs: Added NotWorking tests for bugs #80620 and #80626.
  111. 2007-04-05 Gert Driesen <[email protected]>
  112. * TreeViewTest.cs: Added NotWorking test for bug #81319.
  113. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  114. * ControlTest.cs: Ignore EventStyleTest (can't find a reliable way to
  115. generate paint messages on Windows) and change PubPropTest to
  116. accept (0,0) as a valid mouse location.
  117. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  118. * DateTimePickerTest.cs: Added a few more cases to TextTest.
  119. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  120. * DateTimePickerTest.cs: Added a few more cases to TextTest.
  121. 2007-04-03 Rolf Bjarne Kvinge <[email protected]>
  122. * MdiFormTest.cs: Added ChangeClientSizeTest for bug 80995.
  123. 2007-04-02 Rolf Bjarne Kvinge <[email protected]>
  124. * ContainerControlTest.cs: Add RemoveActiveControlTest
  125. * MdiFormHandleTest.cs, BindingTest.cs: Remove stacktrace from output.
  126. * FormTest.cs: Add special window style cases.
  127. 2007-03-31 Gert Driesen <[email protected]>
  128. * RichTextBoxTest.cs: Added BackColor test. Improved ReadOnly tests.
  129. Added ScrollBars tests.
  130. * TextBoxTest.cs: Improve BackColor test. Added ScrollBars tests.
  131. Improved ReadOnly tests.
  132. 2007-03-30 Gert Driesen <[email protected]>
  133. * FormHandleTest.cs: Enabled test for bug #81272.
  134. 2007-03-30 Jonathan Pobst <[email protected]>
  135. * HScrollPropertiesTest.cs, VScrollPropertiesTest.cs: Added.
  136. 2007-03-30 Jonathan Pobst <[email protected]>
  137. * UserControlTest.cs: Add test for CreateParams.
  138. 2007-03-30 Gert Driesen <[email protected]>
  139. * FormHandleTest.cs: Added test for bug #81272.
  140. 2007-03-30 Rolf Bjarne Kvinge <[email protected]>
  141. * MdiFormTest.cs: Added test for #79964.
  142. 2007-03-28 Jonathan Pobst <[email protected]>
  143. * ToolStripOverflowButtonTest.cs, ToolStripOverflowTest.cs: Disable
  144. some tests I didn't mean to commit yet.
  145. 2007-03-28 Jonathan Pobst <[email protected]>
  146. * StatusStripTest.cs: Added.
  147. * ToolStripContainerTest.cs: Added.
  148. * ToolStripContentPanelTest.cs: Added.
  149. * ToolStripDropDownTest.cs: Added.
  150. * ToolStripManagerTest.cs: Added.
  151. * ToolStripOverflowButtonTest.cs: Added.
  152. * ToolStripOverflowTest.cs: Added.
  153. * ToolStripPanelTest.cs: Added.
  154. * ToolStripProgressBarTest.cs: Enable tests about MarqueeAnimationSpeed.
  155. * ToolStripStatusLabelTest.cs: Added.
  156. 2007-03-26 Carlos Alberto Cortez <[email protected]>
  157. * ListViewItemTest.cs: Add tests for constructors taking
  158. an array of strings, for the ListViewSubItem constructors,
  159. and for the ListViewSubItemCollection.AddRange method receiving
  160. and array of null strings.
  161. 2007-03-25 Jonathan Pobst <[email protected]>
  162. * ToolStripTest.cs: Fix ambiguous Category attribute.
  163. 2007-03-25 Jonathan Pobst <[email protected]>
  164. * ToolStripTest.cs: Mark WM decoration dependent test as NotWorking.
  165. 2007-03-25 Jonathan Pobst <[email protected]>
  166. * ButtonTest.cs: Add test demonstrating the behavior of ImageList.
  167. * MenuStripTest.cs: General test suite.
  168. * ToolStripComboBoxTest.cs: Enable tests for FlatStyle.
  169. * ToolStripControlHostTest.cs: Form.ShowInTaskbar = false.
  170. * ToolStripItemTest.cs: Test for method Dispose.
  171. * ToolStripMenuItemTest.cs: Add tests for constructor and keyboard shortcuts.
  172. * ToolStripProgressBarTest.cs: Enable previously NotWorking test.
  173. * ToolStripTest.cs: Add tests for Overflow, Dock/Orientation, and
  174. CreateLayoutSettings.
  175. 2007-03-24 Jonathan Pobst <[email protected]>
  176. * DefaultLayoutTest.cs: Enable some NotWorking tests that now
  177. work correctly.
  178. 2007-03-24 Jonathan Pobst <[email protected]>
  179. * ProgressBarTest.cs, ScrollBarTest.cs, TimerTest.cs: Update
  180. tests to pass on .Net 2.0.
  181. 2007-03-22 Jonathan Pobst <[email protected]>
  182. * FormTest.cs: Mark new test FormStartupPositionChangeTest as
  183. NotWorking to fix the monobuild.
  184. 2007-03-22 Rolf Bjarne Kvinge <[email protected]>
  185. * MdiFormTest.cs: Make StartLocationTest NotWorking, it fails on
  186. monobuild for unknown reasons.
  187. * FormTest.cs: Make Location NotWorking, it fails on monobuild for
  188. unknown reasons.
  189. 2007-03-22 Chris Toshok <[email protected]>
  190. * FormTest.cs: enable Location test for #80052.
  191. 2007-03-22 Rolf Bjarne Kvinge <[email protected]>
  192. * MdiFormTest.cs: Added a StartLocationTest, and commented out all old
  193. StartLocationTest*s, since they are failiing on WinXP with XP
  194. theme.
  195. * FormTest.cs: Added tests for StartPosition.
  196. 2007-03-21 Rolf Bjarne Kvinge <[email protected]>
  197. * DefaultLayoutTest.cs: Fixed line endings.
  198. * BindingSourceTest.cs: Remove a couple of warnings.
  199. 2007-03-19 Carlos Alberto Cortez <[email protected]>
  200. * ListViewItemTest.cs: Add test for BackColor, ForeColor,
  201. UseItemStyleForSubItems.
  202. 2007-03-20 Rolf Bjarne Kvinge <[email protected]>
  203. * EventLogger.cs: Add CountEvents.
  204. * MdiFormTest.cs: Added CloseTest.
  205. 2007-03-19 Gert Driesen <[email protected]>
  206. * RichBoxTest.cs: Disabled ReadOnly test until I can test it on linux.
  207. 2007-03-19 Gert Driesen <[email protected]>
  208. * RichBoxTest.cs: Enabled ReadOnly test.
  209. 2007-03-19 Gert Driesen <[email protected]>
  210. * PaintEventArgsTest.cs: Enabled tests for bug #78448 on 2.0 profile.
  211. 2007-03-19 Jonathan Pobst <[email protected]>
  212. * ToolStripTest.cs: Enable gert's DockSize test for bug #80762.
  213. 2007-03-19 Rolf Bjarne Kvinge <[email protected]>
  214. * FormHandleTest.cs: Create new forms at a few specific places + a few
  215. more corner cases. No longer not working.
  216. * MdiFormHandleTest.cs: These tests are working now.
  217. * FormTest.cs: IsHandleCreated is working now, the parented tests are
  218. not working.
  219. 2007-03-19 Everaldo Canuto <[email protected]>
  220. * MenuItemTest.cs: Add test for OwnerDraw (#81182).
  221. 2007-03-19 Gert Driesen <[email protected]>
  222. * RichTextBoxTest.cs: Marked failing test NotWorking.
  223. 2007-03-19 Rolf Bjarne Kvinge <[email protected]>
  224. * ControlTest.cs: Added InvokeTestParentHandle.
  225. 2007-03-18 Gert Driesen <[email protected]>
  226. * RichTextBoxTest.cs: Added tests for ReadOnly effect on BackColor.
  227. * TextBoxTest.cs: Added tests for ReadOnly effect on BackColor.
  228. 2007-03-17 Rolf Bjarne Kvinge <[email protected]>
  229. * ComboBoxTest.cs: Added DataBindingTest.
  230. 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
  231. * MdiFormTest.cs: Make TopLevelTest not working until the fix is ready
  232. to get in.
  233. 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
  234. * MdiFormTest.cs, ControlTest.cs: Remove a warning.
  235. 2007-03-16 Rolf Bjarne Kvinge <[email protected]>
  236. * ApplicationContextTest.cs: Added NotWorking test for nested
  237. application contexts.
  238. * ControlHandleTest.cs: Comment out the dnd tests, they create a form
  239. on windows that won't close until the mouse is moved. Add a few
  240. more corner cases to the test.
  241. * MdiFormTest.cs: Add TopLevelTest.
  242. 2007-03-15 Chris Toshok <[email protected]>
  243. * BindingSourceTest.cs: add another test, and mark the NotWorking
  244. ones so that they aren't clogging up the 2.0 build.
  245. 2007-03-15 Jonathan Pobst <[email protected]>
  246. * DefaultLayoutTest.cs: Add test for bug #80912.
  247. 2007-03-15 Ivan N. Zlatev <[email protected]>
  248. * Common.cs, TestHelper.cs: Replaces all uses of the custom
  249. WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
  250. 2007-03-15 Chris Toshok <[email protected]>
  251. * ControlTest.cs: add Ivan's WindowTargetTest after fixing them,
  252. with an extra one included.
  253. 2007-03-15 Rolf Bjarne Kvinge <[email protected]>
  254. * FormTest.cs: Disable FormBorderStyleTest for the moment.
  255. * DefaultLayoutTest.cs: Disable BehaviorOverriddenDisplayRectangle for the moment.
  256. 2007-03-14 Jackson Harper <[email protected]>
  257. * TreeViewTest.cs: Some more tests pass now.
  258. 2007-03-14 Gert Driesen <[email protected]>
  259. * ErrorProviderTest.cs: Enabled previously failing tests.
  260. 2007-03-14 Andreia Gaita <[email protected]>
  261. * TabControlTest.cs: Add tests for Deselecting, Deselected,
  262. Selecting events.
  263. 2007-03-14 George Giolfan <[email protected]>
  264. * TreeViewTest.cs: Add TreeViewNodeSorterTest.
  265. 2007-03-13 Gert Driesen <[email protected]>
  266. * ErrorProviderTest.cs: Improved GetandSetErrorTest. Marked failing
  267. test NotWorking. Removed extra tabs.
  268. 2007-03-13 Jonathan Pobst <[email protected]>
  269. * FormTest.cs: Add test for bug #80773.
  270. 2007-03-12 Jonathan Pobst <[email protected]>
  271. * ControlTest.cs: Add test for bug #81125.
  272. 2007-03-12 Jonathan Pobst <[email protected]>
  273. * FormTest.cs: Add a test showing we do not recreate the handle when
  274. MinimizeBox or MaximizeBox is changed. [Part of bug #80640]
  275. 2007-03-12 Jonathan Pobst <[email protected]>
  276. * ControlTest.cs: Add test for bug #80621.
  277. 2007-03-11 Everaldo Canuto <[email protected]>
  278. * LinkLabelTest.cs: LinkLabel tests added.
  279. 2007-03-10 Gert Driesen <[email protected]>
  280. * FormHandleTest.cs: Fixed build using csc 1.x.
  281. * MdiFormHandleTest.cs: Fixed build using csc 1.x. Removed extra tabs.
  282. * ControlHandleTest.cs: Fixed build using csc 1.x.
  283. * TextBoxTest.cs: Improved test for BackColor. Added test for
  284. ForeColor.
  285. 2007-03-10 Gert Driesen <[email protected]>
  286. * TextBoxTest.cs: Isolate BackColor tests.
  287. 2007-03-09 Rolf Bjarne Kvinge <[email protected]>
  288. * FormHandleTest.cs: Added.
  289. * MdiFormHandleTest.cs: Added.
  290. 2007-03-08 Carlos Alberto Cortez <[email protected]>
  291. * ListViewTest.cs: Added tests for the ListView and
  292. Index properties of ListViewItems in VirtualMode.
  293. * ListViewCollectionsTest.cs: Remove warning when building
  294. tests.
  295. 2007-03-08 Gert Driesen <[email protected]>
  296. * FormTest.cs: Added tests for bug #80791 and #80574.
  297. 2007-03-08 Rolf Bjarne Kvinge <[email protected]>
  298. * SendKeysTest.cs: Fixed to not hang keyboard on Windows.
  299. 2007-03-08 Jonathan Pobst <[email protected]>
  300. * FormTest.cs: Add tests for bugs #80574, #80791.
  301. 2007-03-05 Chris Toshok <[email protected]>
  302. [merge -r72718:73765 from mwf-handle-branch]
  303. 2007-03-05 Chris Toshok <[email protected]>
  304. * ControlHandleTest.cs: make this build on both 1.1 and 2.0
  305. profiles.
  306. 2007-02-28 Chris Toshok <[email protected]>
  307. * ControlTest.cs: Flesh out ControlInvokeTest to make sure that
  308. the Control thread dies (that Application.Run returns, basically).
  309. This works in isolation, but for some reason it isn't exiting when
  310. run in concert with other tests (this test is the cause of the
  311. hangs running the unit tests.) Marking NotWorking for the time
  312. being. This needs to be fixed before merging back to the
  313. mainline, imo.
  314. 2007-03-02 Rolf Bjarne Kvinge <[email protected]>
  315. * FormTest.cs: Added MaximizedParentedFormTest.
  316. 2007-03-02 Carlos Alberto Cortez <[email protected]>
  317. * ListViewCollectionsTest.cs: Added tests for the exceptions thrown
  318. by ListViewItemCollection when virtual mode is used.
  319. 2007-03-01 Gert Driesen <[email protected]>
  320. * ListViewCollectionsTest.cs: Added ColumnHeader.Index tests.
  321. * ColumnHeaderTest.cs: Added more DisplayIndex tests.
  322. 2007-02-29 Carlos Alberto Cortez <[email protected]>
  323. * ListViewTest.cs: Add test for VirtualMode and VirtualSize,
  324. as well as for the exceptions they throw.
  325. 2007-02-28 Jonathan Pobst <[email protected]>
  326. * DefaultLayoutTest.cs: Add test for bug #80917.
  327. 2007-02-26 Gert Driesen <[email protected]>
  328. * ListViewCollectionsTest.cs: Added and improved tests for removing
  329. columns and items, and clearing the collections.
  330. * ListViewTest.cs: Improved ClearTest to also verify whether removed
  331. columns and items are unlinked from owning ListView.
  332. 2007-02-23 Raja R Harinath <[email protected]>
  333. Fix compilation error
  334. * DataGridViewRowTest.cs (System.ComponentModel): Remove unused 'using'.
  335. 2007-02-22 Gert Driesen <[email protected]>
  336. * DataGridViewRowTest.cs: Added tests for Height and MinimumHeight.
  337. 2007-02-21 Gert Driesen <[email protected]>
  338. * ComboBoxTest.cs: Added test for setting Text to null if SelecedIndex
  339. is already -1.
  340. 2007-02-19 Gert Driesen <[email protected]>
  341. * ComboBoxTest.cs: Added test for Text. Added and improved tests for
  342. FindString and FindStringExact. Improved ObjectCollection tests.
  343. 2007-02-19 Rolf Bjarne Kvinge <[email protected]>
  344. * ListControlTest.cs: Added test for #80794.
  345. 2007-02-19 Rolf Bjarne Kvinge <[email protected]>
  346. * FormTest.cs: Added NotWorking test for Form CreateParams.Style and
  347. ExStyle and a test for parented forms.
  348. 2007-02-18 Gert Driesen <[email protected]>
  349. * SaveFileDialogTest.cs: Added tests for SaveFileDialog.
  350. 2007-02-15 Jonathan Pobst <[email protected]>
  351. * ToolStripItemTest.cs: BehaviorImageList fails on *nix due to a bug in
  352. libgdiplus: #80842. Marked as Ignore for now, will re-enable when
  353. bug is fixed.
  354. 2007-02-15 Rolf Bjarne Kvinge <[email protected]>
  355. * DateTimePickerTest.cs: Use OSVersion to determine whether to call
  356. GetUserDefaultLCID or not, seems like the runtime crashes on some
  357. architectures instead of throwing an exception otherwise.
  358. 2007-02-15 Rolf Bjarne Kvinge <[email protected]>
  359. * DateTimePickerTest.cs: Some culture dependant tests are only supposed
  360. to run with en-US locale, so check it. On Windows call
  361. GetUserDefaultLCID to check it, since MS DateTimePicker doesn't
  362. honor Thread.CurrentCulture, only the Windows setting (and some
  363. other test might have set Thread.CurrentCulture to some other
  364. value, so the checking only this might fail). Added test for
  365. setting invalid Text property.
  366. * EventLogger.cs: Added. Takes an object and creates a class on the fly
  367. that will log all the object's events.
  368. 2007-02-14 Carlos Alberto Cortez <[email protected]>
  369. * ListViewTest.cs: Added DisposeTest test for bug #80607.
  370. * ColumnHeaderTest.cs: Remove the NotWorking category for
  371. tests for bug #80607.
  372. 2007-02-13 Everaldo Canuto <[email protected]>
  373. * LabelTest.cs: Add asserts for CompatibleTextRendering = false
  374. on PreferredHeight test for 2.0 profile.
  375. 2007-02-13 Rolf Bjarne Kvinge <[email protected]>
  376. * DateTimePickerTest.cs, ControlHandleTest.cs: Remove warnings.
  377. 2007-02-13 Rolf Bjarne Kvinge <[email protected]>
  378. * DataGridColumnStyleTest.cs, ColumnStyleTest.cs, LabelTest.cs,
  379. PropertyManagerTest.cs, CurrencyManagerTest.cs,
  380. DataGridTextBoxColumnTest.cs, UpDownTest.cs, FocusTest.cs,
  381. GridColumnStylesCollectionTest.cs,
  382. GridTableStylesCollectionTest.cs, TreeNodeCollectionTest.cs,
  383. ScrollBarTest.cs, ListBoxTest.cs, TabControlTest.cs,
  384. BindingContextTest.cs, RowStyleTest.cs: Removed warnings.
  385. 2007-02-12 Everaldo Canuto <[email protected]>
  386. * LabelTest.cs: "NotWorking" removed from PreferredHeight test.
  387. 2007-02-12 Everaldo Canuto <[email protected]>
  388. * LabelTest.cs: Rename PreferredSize test to PreferredWidth and
  389. create PreferredHeight.
  390. 2007-02-10 Gert Driesen <[email protected]>
  391. * PrintDialogTest.cs: Fixed DefaultValues test on 2.0 profile.
  392. * ToolStripTest.cs: Added test for bug #80762. Enabled ignored test.
  393. 2007-02-09 Gert Driesen <[email protected]>
  394. * FormTest.cs: Added tests for bug #80773.
  395. 2007-02-09 Gert Driesen <[email protected]>
  396. * PrintDialogTest.cs: Added test for bug #80764.
  397. 2007-02-08 Jonathan Pobst <[email protected]>
  398. * ToolStripItemTest.cs: Uncomment tests relating to Overflow. Add
  399. test exploring interaction between Image, ImageIndex, and ImageKey.
  400. 2007-02-08 Gert Driesen <[email protected]>
  401. * FormTest.cs: Improved test for bug #80604.
  402. 2007-02-08 Gert Driesen <[email protected]>
  403. * ControlTest.cs: Removed use of #pragma to allow tests to be built using
  404. csc 1.x.
  405. 2007-02-08 Gert Driesen <[email protected]>
  406. * LogGenerator.cs: Generate code that can be built using csc 1.x.
  407. * ControlLogger.cs: Fixed code to compile using csc 1.x.
  408. 2007-02-08 Rolf Bjarne Kvinge <[email protected]>
  409. * DateTimePickerTest.cs: Created more tests for DateTimePicker, now
  410. tests a lot of different custom formats.
  411. 2007-02-07 Gert Driesen <[email protected]>
  412. * DataGridViewColumnTest.cs: Added test for bug #80746.
  413. 2007-02-07 Gert Driesen <[email protected]>
  414. * ListBoxTest.cs: Added tests for bug #80696 and bug #80753.
  415. 2007-02-06 Rolf Bjarne Kvinge <[email protected]>
  416. * TimerTest.cs: Added
  417. 2007-02-04 Gert Driesen <[email protected]>
  418. * PaddingConverterTest.cs: Added back ConvertTo and ConvertFrom tests,
  419. and make them pass on all cultures.
  420. 2007-02-04 Jonathan Pobst <[email protected]>
  421. * PaddingConverterTest.cs: Make tests non culture-dependent.
  422. 2007-02-03 Rolf Bjarne Kvinge <[email protected]>
  423. * TestHelper.cs: Added a helper method to remove warnings.
  424. 2007-02-03 Rolf Bjarne Kvinge <[email protected]>
  425. * ControlTest.cs: Removed warnings. Added CaptureTest.
  426. * LogGenerator.cs: Added (used to generate ControlLogger and ControlLogger2).
  427. * ControlLogger(2).cs: Added.
  428. 2007-02-01 Everaldo Canuto <[email protected]>
  429. * LabelTest.cs: StyleTest created to test #79537. TestHelper was used.
  430. 2007-02-01 Everaldo Canuto <[email protected]>
  431. * TestHelper.cs: TesHelper class added. This class will provide some
  432. usefull methods that can be used to test Control derived classes,
  433. at moment only static methods GetCreateParams, IsStyleSet and
  434. IsExStyleSet is implements. A copy of WindowStyles, WindowExStyles
  435. and Msg is also available as public to help is control tests.
  436. 2007-02-01 Rolf Bjarne Kvinge <[email protected]>
  437. * ControlTest.cs: Added ControlSizeTest.
  438. 2007-01-31 Jonathan Pobst <[email protected]>
  439. * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
  440. Mark BehaviorAutoSize as NotWorking, it is font dependent.
  441. 2007-01-29 Chris Toshok <[email protected]>
  442. * ControlHandleTest.cs: make this compile against mono. we can
  443. remove the __MonoCS__ ifdefs as we add properties. Also, split
  444. out the Show() tests because they were failing and I wanted to see
  445. which other tests were passing.
  446. 2007-01-26 Jonathan Pobst <[email protected]>
  447. * PaddingConverterTest.cs: Added.
  448. 2007-01-26 Rolf Bjarne Kvinge <[email protected]>
  449. * StatusBarTest.cs: Added a few more tests.
  450. 2007-01-25 Jonathan Pobst <[email protected]>
  451. * ControlHandleTest.cs: Added. Has tests to find exactly which
  452. Methods and Properties create a Handle. Not added to sources file
  453. because it's written against MS, and we're probably missing some
  454. methods/properties.
  455. 2007-01-25 Jonathan Pobst <[email protected]>
  456. * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
  457. Try to make some tests not Font/DPI dependent.
  458. 2007-01-25 Chris Toshok <[email protected]>
  459. * SplitterTest.cs: new tests.
  460. 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
  461. * ComboBoxTest.cs: Added tests for ResetText.
  462. 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
  463. * ComboBoxTest.cs: Add tests for new properties.
  464. * MdiFormTest.cs: Set ShowInTaskbar = false for main forms.
  465. 2007-01-24 Gert Driesen <[email protected]>
  466. * FormTest.cs: Added NotWorking test for bug #80604.
  467. * ColumnHeaderTest.cs: Added tests for bug #80607. Added test for
  468. properties introduced in 2.0 profile.
  469. 2007-01-24 Jonathan Pobst <[email protected]>
  470. * ComboBoxTest.cs: Add FindStringExactMaxExceptionNet20 test.
  471. * FormTest.cs: Mark BehaviorResizeOnBorderStyleChangedNotVisible as NotWorking,
  472. it's values match MS only.
  473. * LabelTest.cs: Mark AutoSizeChangedChangedTest as Ignore for 2.0 until it is
  474. reworked.
  475. * ToolStripTextBoxTest.cs: Mark PropertyModified as Ignore until a bug in TextBox
  476. is fixed. Same for Constructor: A12.
  477. 2007-01-24 Rolf Bjarne Kvinge <[email protected]>
  478. * ControlTest.cs: Marked OnPaintDoubleBufferedTest as Interactive,
  479. they'll only work if you actually have a display to show them on.
  480. 2007-01-23 Everaldo Canuto <[email protected]>
  481. * ToobarTest.cs: Comment DPI dependent asserts in ButtonSize test.
  482. 2007-01-23 Everaldo Canuto <[email protected]>
  483. * ToobarTest.cs: TooBar.ButtonSize tests added.
  484. 2007-01-23 Jonathan Pobst <[email protected]>
  485. * GridTableStylesCollectionTest.cs: Mark TestAdd as NotWorking.
  486. There is a TODO in the DataGrid source referencing that Add should allow
  487. multiple columns with the same name, but currently doesn't.
  488. 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
  489. * ControlTest.cs: Added a tests for ControlCollection and
  490. MDI children.
  491. 2007-01-23 Andreia Gaita <[email protected]>
  492. * SendKeysTest.cs: Marked interactive, they're unstable
  493. * ControlTest.cs (ControlSetTopLevelTest): TestForm marked NotWorking,
  494. we have to see why SetTopLevel is toggling the Form's visibility.
  495. 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
  496. * ControlTest.cs: Make OnPaintTest NotWorking, since it only
  497. works once in a while.
  498. 2007-01-23 Chris Toshok <[email protected]>
  499. * BindingSourceTest.cs: initial BindingSource tests. not built
  500. yet.
  501. 2007-01-23 Chris Toshok <[email protected]>
  502. * DefaultLayoutTest.cs: make the docking tests independent of
  503. constants relating to the form's clientrectangle bounds, since on
  504. X it has a different value when the window isn't mapped (as in
  505. this case).
  506. 2007-01-23 Andreia Gaita <[email protected]>
  507. * DefaultLayoutTest.cs: correct TestDockFillFirst and TestDockFillLast,
  508. failing on ms.net
  509. 2007-01-23 Andreia Gaita <[email protected]>
  510. * SendKeysTest.cs: wrong value for Interval, should be > 0
  511. 2007-01-23 Andreia Gaita <[email protected]>
  512. * BindingTest.cs (BindingContextChangedTest2): Added 2.0-specific check,
  513. was failing under ms.net.
  514. * ComboBoxText.cs (FindStringExactMatchException): Add check for exception
  515. only for 1.1 - was failing under ms.net
  516. * ControlTest.cs:
  517. - AnchorDockTest: Fix incorrect assertion #5 - was failing
  518. under ms.net
  519. - TestForm: Fix incorrect assertion #4 - was failing
  520. under ms.net
  521. * TreeNodeCollectionTest.cs: Add new Add() tests for 2.0
  522. 2007-01-18 Jonathan Pobst <[email protected]>
  523. * FormTest.cs: Add test for bug #80574.
  524. 2007-01-22 Jonathan Pobst <[email protected]>
  525. * TabControlTest.cs: Add tests for SelectTab and Selected event.
  526. 2007-01-20 Jonathan Pobst <[email protected]>
  527. * DefaultLayoutTest.cs: Add tests for Dock.Fill behavior
  528. with other !Dock.Fill controls.
  529. 2007-01-20 Jonathan Pobst <[email protected]>
  530. * DefaultLayoutTest.cs: Add test for interactions between
  531. setting Dock and Anchor.
  532. 2007-01-19 Jonathan Pobst <[email protected]>
  533. * TreeNodeTest.cs: Add test for 2.0 Name property.
  534. 2007-01-19 Chris Toshok <[email protected]>
  535. * DataGridTextBoxColumnTest.cs: add a couple more tests to see how
  536. DataGrid.ReadOnly affects things.
  537. 2007-01-19 Chris Toshok <[email protected]>
  538. * DataGridTextBoxColumnTest.cs: mark TestUpdateUI as NotWorking,
  539. and add a couple of tests for the overloaded ReadOnly property.
  540. can't figure out how it's being used, maybe all it really does is
  541. chain up to base.ReadOnly.
  542. * DataGridColumnStyleTest.cs: add some tests to see if we should
  543. be mucking with the ReadOnly property when the PropertyDescriptor
  544. is set (turns out we shouldn't be).
  545. 2007-01-18 Jonathan Pobst <[email protected]>
  546. * FormTest.cs: Add test for bug #79959.
  547. 2007-01-18 Rolf Bjarne Kvinge <[email protected]>
  548. * StatusBarTest.cs: Added tests for StatusBarPanelCollection.
  549. * StatusBarPanelTest.cs: Added tests for new properties in StatusBarPanel.
  550. 2007-01-18 Jonathan Pobst <[email protected]>
  551. * NotifyIconTest.cs: Add test for Tag, ContextMenuStrip.
  552. 2007-01-18 Chris Toshok <[email protected]>
  553. * DataGridTextBoxColumnTest.cs: add some tests (some of which aren't working on mono)
  554. * DataGridTextBoxTest.cs: add some tests (some of which aren't working on mono)
  555. 2007-01-16 Chris Toshok <[email protected]>
  556. * UpDownTest.cs: add UpDownActiveControlTest.
  557. 2007-01-16 Jonathan Pobst <[email protected]>
  558. * ControlPropertyEventsTest.cs: Enable PropertyMinimumSize test.
  559. * ControlTest.cs: Move ControlCollection tests to ControlCollectionTest.cs.
  560. * EventArgsTest.cs, FlowPanelTests.cs: Change namespace to match all other tests.
  561. * FormTest.cs: Add tests for FormClosed event and Show (IWin32Window).
  562. * MenuStripTest.cs: Add test for MDI.
  563. * SplitContainerTest.cs: Change namespace, remove TestNotRelaventProperties.
  564. * ToolStripMenuItemTest.cs: Add test for MDI.
  565. * ToolStripTest.cs: Ignore ControlStyle, Un-Ignore PropertyAutoSize.
  566. 2007-01-16 Rolf Bjarne Kvinge <[email protected]>
  567. * MdiFormTest.cs: Added tests for ActiveChild for mdi parents.
  568. 2007-01-15 Everaldo Canuto <[email protected]>
  569. * MenuTest.cs: Add test for #80006, mainmenu merge operations.
  570. 2007-01-15 Everaldo Canuto <[email protected]>
  571. * MenuItemTest.cs: Remove the "NotWorking" from MenuItemMerge test.
  572. 2007-01-14 Carlos Alberto Cortez <[email protected]>
  573. * ListViewTest.cs: Add tests for new 2.0 FindItemWithText methods.
  574. 2007-01-13 Andreia Gaita <[email protected]>
  575. * ControlTest.cs: Add test to check if Exception is raised when
  576. adding a top level control (form) as a child control
  577. 2007-01-12 Gert Driesen <[email protected]>
  578. * ControlStyleTest.cs: Added style test for LinkLabel with text, but
  579. no links.
  580. 2007-01-12 Gert Driesen <[email protected]>
  581. * FocusTest.cs: Ignore tests that rely on Form.Show () synchronously
  582. generating WM_ACTIVATE on unix.
  583. * FormTest.cs: Same.
  584. 2007-01-10 Chris Toshok <[email protected]>
  585. * FocusTest.cs: Disable a couple of tests that rely on the
  586. focus/active control state being available directly after
  587. form.Show() - doesn't work on X11, since form.Show shows the
  588. window asynchronously. Also, add a large focus/enter/leave event
  589. handling test andreia and I were using to correct problems in
  590. ContainerControl.set_ActiveControl.
  591. * FormTest.cs: add a test to show that even if OnActivate is
  592. overriden and not chained up to the base class, ActiveControl is
  593. still set. Unfortunately it doesn't work on the X11 backend
  594. because Form.Show is necessarily an async operation.
  595. * ApplicationTest.cs: don't show forms in the taskbar, and dispose
  596. of them.
  597. * ApplicationContextTest.cs: same.
  598. 2007-01-10 Carlos Alberto Cortez <[email protected]>
  599. * ColumnHeaderTest.cs: Add a test for settings Width to -1 and
  600. -2 values (auto resizing).
  601. 2007-01-10 Chris Toshok <[email protected]>
  602. * ContainerControlTest.cs: add a test for setting ActiveControl to
  603. a non-child control.
  604. 2007-01-08 Jonathan Pobst <[email protected]>
  605. * FormTest.cs: Added tests for ensuring Form.OnFormClosing is called.
  606. 2007-01-08 Jonathan Pobst <[email protected]>
  607. * ControlTest.cs: Added tests for 2.0 ControlCollection methods.
  608. 2007-01-05 Gert Driesen <[email protected]>
  609. * ControlTest.cs: Added test for bug #80456.
  610. 2007-01-05 Jonathan Pobst <[email protected]>
  611. * ControlPropertyEventsTest.cs: Added. These test property getters and
  612. setters and ensure that all relevant events are called on setters for
  613. Control.
  614. 2007-01-04 Chris Toshok <[email protected]>
  615. * CommonDialogsTest.cs: disable FolderBrowserDialogTest (and add a
  616. stack trace in a comment).
  617. * RichTextBoxTest.cs: disable FindTest.
  618. 2007-01-04 Andreia Gaita <[email protected]>
  619. * FormTest.cs: disabled ActivateTest
  620. * FocusTest.cs: disabled ActiveControl_Disabled test
  621. 2007-01-04 Carlos Alberto Cortez <[email protected]>
  622. * ColumnHeaderTest.cs: New test.
  623. 2007-01-04 Jonathan Pobst <[email protected]>
  624. * CommonDialogTest.cs, CursorTest.cs, ErrorProviderTest.cs,
  625. HelpProviderTest.cs: Add tests for Tag properties.
  626. * LinkAreaTest.cs: Add test for ToString.
  627. 2007-01-03 Gert Driesen <[email protected]>
  628. * ControlTest.cs: Enabled tests after DefaultFont change. Ignore test
  629. that is DPI-dependent.
  630. * RichTextBoxTest.cs: Ignore test that is DPI-dependent.
  631. * TextBoxTest.cs: Ignore test that is DPI-dependent.
  632. 2007-01-02 Gert Driesen <[email protected]>
  633. * ControlTest.cs: Added FontHeight test.
  634. 2007-01-02 Gert Driesen <[email protected]>
  635. * ListControlTest.cs: Added test for AllowSelection.
  636. * UpDownTest.cs: MockItem is now nested class.
  637. * ListBoxTest.cs: Added test for AllowSelection.
  638. * CheckedListBoxTest.cs: Added tests for DisplayMember, GetItemText,
  639. SelectionMode, Text and ValueMember.
  640. 2007-01-01 Gert Driesen <[email protected]>
  641. * ToolBarTest.cs: Enabled test for bug #80416.
  642. 2006-12-31 Chris Toshok <[email protected]>
  643. * ControlEventTest.cs: add SizeChanged to the resize/layout event
  644. test.
  645. 2006-12-31 Chris Toshok <[email protected]>
  646. * ControlTest.cs: new test for Anchor/Dock interactions. Also add
  647. tests for Control.SetTopLevel.
  648. 2006-12-31 Andreia Gaita <[email protected]>
  649. * ContainerControlTest.cs / FocusTest.cs: Moved Gert's
  650. ActiveControl tests to FocusTest, for easier management.
  651. Add Validation tests.
  652. 2006-12-31 Gert Driesen <[email protected]>
  653. * UpDownTest.cs: Added tests for DomainUpDown and NumericUpDown.
  654. 2006-12-31 Gert Driesen <[email protected]>
  655. * ToolBarTest.cs: Added test for bug #80416.
  656. 2006-12-30 Gert Driesen <[email protected]>
  657. * ContainerControlTest.cs: Added tests for ActiveControl.
  658. 2006-12-30 Chris Toshok <[email protected]>
  659. * DefaultLayoutTest.cs: add some more variants for the test for
  660. 80336, and remove the NotWorking from the 80336 test.
  661. * SendKeysTest.cs: mark these tests as not working with Xvfb so I
  662. can exclude them.
  663. 2006-12-29 Gert Driesen <[email protected]>
  664. * DataGridTest.cs: Fixed compiler warnings.
  665. 2006-12-29 Gert Driesen <[email protected]>
  666. * ControlTest.cs: Marked FontTest and ResetFontTest as NotWorking
  667. until Theme.DefaultFont change is approved.
  668. 2006-12-29 Chris Toshok <[email protected]>
  669. * ControlEventTest.cs: add a test to determine the ordering of
  670. Layout/Resize events.
  671. 2006-12-29 Gert Driesen <[email protected]>
  672. * TreeNodeTest.cs: Fixed FullPathException test on 2.0 profile.
  673. 2006-12-29 Gert Driesen <[email protected]>
  674. * ControlTest.cs: Added test for Font and ResetFont.
  675. * DataGridTest.cs: Fixed CaptionFont test on 2.0 profile.
  676. 2006-12-29 Gert Driesen <[email protected]>
  677. * ControlTest.cs: Improved DoubleBufferedTest.
  678. 2006-12-28 Chris Toshok <[email protected]>
  679. * ControlTest.cs: add a test to check whether parent.PerformLayout
  680. is called from OnResized (it isn't).
  681. * DefaultLayoutTest.cs: new file, add a bunch of anchor tests,
  682. including the (not working) test case in bug #80336. Move the
  683. docking/undocking tests here.
  684. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  685. * ControlTest.cs: More tests for double buffers.
  686. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  687. * ControlTest.cs: Added double buffering tests.
  688. 2006-12-27 Gert Driesen <[email protected]>
  689. * ControlTest.cs: Added DoubleBuffered test. Added IsHandleCreated
  690. test for invisible control.
  691. 2006-12-27 Gert Driesen <[email protected]>
  692. * MonthCalendarTest.cs: Fixed exception tests for MaxSelectionCount,
  693. MaxDate and MinDate on 2.0 profile. Removed extra tabs.
  694. 2006-12-27 Jonathan Pobst <[email protected]>
  695. * ToolStripButtonTest.cs, ToolStripComboBoxTest.cs, ToolStripControlHostTest.cs,
  696. ToolStripItemTest.cs, ToolStripLabelTest.cs, ToolStripProgressBarTest.cs,
  697. ToolStripSeparatorTest.cs, ToolStripTest.cs, ToolStripTextBoxTest.cs: Added.
  698. 2006-12-27 Rolf Bjarne Kvinge <[email protected]>
  699. * MonthCalendarTest.cs: Added test for Click and DoubleClick events.
  700. 2006-12-27 Gert Driesen <[email protected]>
  701. * ScrollableControlTest.cs: Added tests for AutoScroll and
  702. AutoScrollMinSize.
  703. 2006-12-26 Gert Driesen <[email protected]>
  704. * ComboBoxTest.cs: Improved tests for DropDownWidth and ItemHeight.
  705. 2006-12-26 Rolf Bjarne Kvinge <[email protected]>
  706. * ControlTest.cs: Added NotWorking test for DoubleBuffered.
  707. 2006-12-26 Gert Driesen <[email protected]>
  708. * DataGridViewCellStyleTest.cs: Added tests for FormatProvider,
  709. IsFormatProviderDefault.
  710. * DataGridViewTest.cs: Reworked ColumnCount, ColumnHeadersHeight,
  711. RowHeaderWidth tests. Added DefaultSize, *DefaultCellStyle tests.
  712. 2006-12-23 Gert Driesen <[email protected]>
  713. * DateTimePickerTest.cs: Fixed line endings.
  714. * upDownTest.cs: Added tests for BeginInit, EndInit, UpButton, Value.
  715. 2006-12-23 Daniel Nauck <[email protected]>
  716. * UserControlTest.cs: Add.
  717. 2006-12-23 Gert Driesen <[email protected]>
  718. * ControlTest.cs: Enabled test for bug #80280.
  719. 2006-12-21 Gert Driesen <[email protected]>
  720. * RichTextBoxTest.cs: Added test for bug #80301.
  721. * TextBoxTest.cs: Added test for bug #80301.
  722. 2006-12-21 Daniel Nauck <[email protected]>
  723. * ComboBoxTest.cs,
  724. TextBoxTest.cs: Added AutoComplete property tests.
  725. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  726. * DateTimePickerTest.cs: Created.
  727. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  728. * MonthCalendarTest.cs:
  729. - Enable tests again.
  730. - Added tests for *BoldedDates.
  731. * ControlTest.cs: Added test for BackgroundImageLayout.
  732. 2006-12-19 Chris Toshok <[email protected]>
  733. * DataGridViewBandTest.cs: nuke this file, as there's no way to
  734. construct a DataGridViewBand in isolation (exception through
  735. reflection).
  736. 2006-12-19 Chris Toshok <[email protected]>
  737. * RowStyleTest.cs: unit tests for RowStyle.
  738. * ColumnStyleTest.cs: unit tests for ColumnStyle.
  739. 2006-12-19 Carlos Alberto Cortez <[email protected]>
  740. * ListViewCollectionsTest.cs: Added tests for the new 2.0
  741. methods and properties (SelectedIndexCollection,
  742. SelectedItemCollection, and ListViewSubItemCollection).
  743. * ListViewItemTest.cs: Added test for ImageKey 2.0 property.
  744. 2006-12-19 Gert Driesen <[email protected]>
  745. * ListViewItemTest.cs: Added tests for ListViewSubItemCollection's
  746. AddRange overloads.
  747. * TreeViewTest.cs: Fixed ExpandAll tests.
  748. 2006-12-19 Daniel Nauck <[email protected]>
  749. * ApplicationTest.cs: Restart () test is 2.0 only.
  750. 2006-12-19 Daniel Nauck <[email protected]>
  751. * ApplicationTest.cs: Added test for Restart ().
  752. 2006-12-18 Rolf Bjarne Kvinge <[email protected]>
  753. * MonthCalendarTest.cs: Added test for DefaultMargin.
  754. 2006-12-18 Daniel Nauck <[email protected]>
  755. * DataGridViewAdvancedBorderStyleTest.cs,
  756. DataGridViewRowTest.cs,
  757. DataGridViewElementTest.cs,
  758. DataGridViewCellTest.cs,
  759. DataGridViewCellStyleTest.cs,
  760. DataGridViewTest.cs: fixed NUnit obsolete warnings and
  761. DataGridView tests against .NET 2.0
  762. 2006-12-17 Daniel Nauck <[email protected]>
  763. * ButtonTest.cs: Added tests for FlatButtonAppearance.
  764. 2006-12-17 Gert Driesen <[email protected]>
  765. * TreeViewTest.cs: Added tests for bug #80284.
  766. 2006-12-17 Gert Driesen <[email protected]>
  767. * ControlTest.cs: Added (notworking) test for bug #80280.
  768. Removed extra tabs.
  769. 2006-12-16 Andreia Gaita <[email protected]>
  770. * TabControlTest.cs: Fixed SelectedIndex tests
  771. for MS.NET 2.0
  772. 2006-12-16 Andreia Gaita <[email protected]>
  773. * SendKeysTest.cs: Test cases for SendKeys
  774. These tests can only run in ms.net one at a time.
  775. Since ms.net apparently hooks the keyboard to
  776. implement this, running two tests in a row
  777. makes the second test run before the hook
  778. of the first test is released, effectively
  779. hanging the keyboard. CTRL-ALT-DEL releases
  780. the keyboard, but the test still hangs.
  781. Running each test separately works.
  782. 2006-12-16 Daniel Nauck <[email protected]>
  783. * AutoCompleteStringCollectionTest.cs: new tests for AutoCompleteStringCollection.
  784. 2006-12-16 Daniel Nauck <[email protected]>
  785. * PaddingTest.cs: new tests for Padding.
  786. 2006-12-15 Daniel Nauck <[email protected]>
  787. * ListViewCollectionsTest.cs: test works now on the 1.1 profile.
  788. * ListViewItemTest.cs: add new ListViewSubItem text property test.
  789. 2006-12-15 Daniel Nauck <[email protected]>
  790. * ListViewCollectionsTest.cs: new not working junk add test for ListViewItemCollection
  791. 2006-12-15 Daniel Nauck <[email protected]>
  792. * ListViewCollectionsTest.cs: new ListViewItemCollection AddRange tests
  793. 2006-12-15 Daniel Nauck <[email protected]>
  794. * ListViewCollectionsTest.cs: new ListViewItemCollection indexer test for #80199.
  795. 2006-12-15 Daniel Nauck <[email protected]>
  796. * ListViewGroupTest.cs: new tests for ListViewGroups.
  797. * ListViewGroupCollectionTest.cs: new tests for ListViewGroupCollections.
  798. 2006-12-14 Gert Driesen <[email protected]>
  799. * TabControlTest.cs: Added tests for Control.RemoveAt.
  800. 2006-12-13 Carlos Alberto Cortez <[email protected]>
  801. * ListViewItemTest.cs:
  802. * ListViewCollectionsTest.cs: Add tests for the new 2.0
  803. ListViewItemCollection methods (IndexOfKey, ContainsKey,
  804. new indexer overload, Find, RemoveByKey).
  805. 2006-12-13 Gert Driesen <[email protected]>
  806. * TextBoxTest.cs: Added test for bug #80163.
  807. 2006-12-13 Gert Driesen <[email protected]>
  808. * ControlTest.cs: Improved Region test.
  809. 2006-12-12 Andreia Gaita <[email protected]>
  810. * ControlTest.cs: Add region tests.
  811. 2006-12-12 Rolf Bjarne Kvinge <[email protected]>
  812. * ControlTest.cs: add tests for WM_PARENTNOTIFY.
  813. 2006-12-11 Chris Toshok <[email protected]>
  814. * ControlTest.cs: add some unit tests for null parameters to some
  815. of the ControlCollection methods.
  816. 2006-12-11 Gert Driesen <[email protected]>
  817. * ControlTest.cs: Added test for invalid Dock value.
  818. 2006-12-11 Andreia Gaita <[email protected]>
  819. * TabControlTest.cs: add tests to check if SelectedIndex is
  820. properly set if the TabControl has no pages, before and
  821. after the handle is created
  822. 2006-12-10 Chris Toshok <[email protected]>
  823. * ColumnClickEventArgsTest.cs: new tests.
  824. 2006-12-10 Gert Driesen <[email protected]>
  825. * TabControlTest.cs: Added SelectedIndex tests.
  826. 2006-12-08 Chris Toshok <[email protected]>
  827. * ButtonTest.cs: add tests for DialogResult changes when setting
  828. Form.AcceptButton and Form.CancelButton.
  829. 2006-12-08 Chris Toshok <[email protected]>
  830. * MenuItemTest.cs: add test for menu item events when cloning menu
  831. items. Tests for the bug in #80183.
  832. 2006-12-06 Chris Toshok <[email protected]>
  833. * FormTest.cs: make sure Form.ImeMode is NoControl by default.
  834. * ButtonTest.cs: add a unit test for Button.DefaultImeMode.
  835. 2006-12-06 Chris Toshok <[email protected]>
  836. * RadioButtonTest.cs: add a couple of test involving TabStop.
  837. 2006-12-06 Chris Toshok <[email protected]>
  838. * ImageListTest.cs: add a rather complicated series of assertions
  839. about the imagelist ShouldSerialize/CanReset methods. these pass
  840. on MS and mono now, though. yay.
  841. 2006-12-06 Jackson Harper <[email protected]>
  842. * TextBoxTest.cs: Add a test for Modified property.
  843. - We need to put something on the clipboard before we can paste.
  844. 2006-12-04 Jackson Harper <[email protected]>
  845. * TextBoxTest: More of these tests work now.
  846. - Add a test to ensure that recieving focus selects all of the
  847. text
  848. 2006-12-04 Chris Toshok <[email protected]>
  849. * PrintDialogTest.cs: add [Category("Printing")] to all these
  850. tests so I can exclude them.
  851. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  852. * StatusBarPanelTest.cs: Added a test for invalid
  853. minimum widths.
  854. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  855. * MdiFormTest.cs: Change a few tests to dispose of
  856. the form when the test is finished.
  857. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  858. * MdiFormTest.cs: Added a few NotWorking tests for
  859. initial form location.
  860. 2006-12-04 Everaldo Canuto <[email protected]>
  861. * LabelTest.cs: Add tests for sizes, test for bug #80137.
  862. 2006-12-01 Rolf Bjarne Kvinge <[email protected]>
  863. * MdiFormTest.cs: All current NotWorking tests are now
  864. working, added a few more tests.
  865. 2006-12-01 Gert Driesen <[email protected]>
  866. * CurrencyManagerTest.cs: Added test for bug #80107.
  867. 2006-12-01 Gert Driesen <[email protected]>
  868. * DataGridTest.cs: Fixed build.
  869. 2006-12-01 Gert Driesen <[email protected]>
  870. * DataGridTest.cs: Added tests for Font, CaptionFont and HeaderFont.
  871. 2006-12-01 Everaldo Canuto <[email protected]>
  872. * MenuTest.cs: Tag property assert for 2.0 profile.
  873. 2006-11-30 Everaldo Canuto <[email protected]>
  874. * ToolBarTest.cs:
  875. - Remove ButtonSize.Width and ButtonSize.Height assert because
  876. it depends of system metrics and diferent fonts can cause
  877. diferent sizes.
  878. - Remove "NotWorking" mark from ToolBarPropertyTest, this test
  879. now must works well.
  880. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  881. * MessageTest.cs: Added test for ToString.
  882. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  883. * MdiFormTest.cs: Text_ChildClose is no longer NotWorking.
  884. 2006-11-30 Gert Driesen <[email protected]>
  885. * MenuItemTest.cs: Added test for Text property.
  886. 2006-11-29 Chris Toshok <[email protected]>
  887. * BindingTest.cs: add two new tests.
  888. 2006-11-28 Rolf Bjarne Kvinge <[email protected]>
  889. * TrackBar.cs: Changed SizeTest and OrientationTest
  890. to work on MS with both WinXP theme and Win2K theme.
  891. 2006-11-26 Gert Driesen <[email protected]>
  892. * MdiFormTest.cs: Fixed test on (MS) 2.0 profile.
  893. 2006-11-26 Gert Driesen <[email protected]>
  894. * ControlStylesTest.cs: Fixed GetStyle for 2.0 profile.
  895. 2006-11-26 Gert Driesen <[email protected]>
  896. * FormTest.cs: Added test for bug #80052.
  897. 2006-11-25 Gert Driesen <[email protected]>
  898. * MdiFormTest.cs: Added test for bug #80036.
  899. 2006-11-24 Gert Driesen <[email protected]>
  900. * MdiFormTest.cs: Added NotWorking test for Form.Text.
  901. 2006-11-23 Gert Driesen <[email protected]>
  902. * FormTest.cs: Added test for bug #80020.
  903. * MdiFormTest.cs: Fixed typo, added additonal info.
  904. 2006-11-23 Gert Driesen <[email protected]>
  905. * MdiFormTest.cs: Improved Text test to also verify behavior when
  906. Text of MDI child or container is empty. Added NotWorking test for
  907. Text after MDI is maximized. Added comment with existing NotWorking
  908. test for ActiveMdiChild.
  909. 2006-11-23 Gert Driesen <[email protected]>
  910. * ToolBarTest.cs: Added test for bug #79863. Fixed and enabled
  911. ToStringTest.
  912. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  913. * ControlTest.cs: Added tests for #79999.
  914. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  915. * MdiFormTest.cs: Added tests for WindowState (mdi
  916. children) and Text (mdi parent with maximized mdi
  917. children).
  918. 2006-11-13 Gert Driesen <[email protected]>
  919. * ControlEventTest.cs: Added tests for Invalidated event.
  920. * TreeNodeCollectionTest.cs: Added IList indexer tests.
  921. 2006-11-12 Gert Driesen <[email protected]>
  922. * TextBoxTest.cs: Added (NotWorking) test for bug #79909.
  923. 2006-11-11 Gert Driesen <[email protected]>
  924. * TreeViewTest.cs: Added (NotWorking) tests for BeforeSelect event.
  925. 2006-11-09 Gert Driesen <[email protected]>
  926. * ListViewEventTest.cs: Added tests for SelectedIndexChanged event.
  927. * UpDownTest.cs: Fixed ToStringTest.
  928. 2006-11-09 Alexander Olk <[email protected]>
  929. * CommonDialogsTest.cs: Added
  930. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  931. * StatusBarPanelTest.cs: Added tests for bug #79842
  932. and tests for default properties.
  933. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  934. * TrackBarTest.cs: Added tests for bug #79718.
  935. 2006-11-08 Gert Driesen <[email protected]>
  936. * TextBoxTest.cs: Added test for bug #79851.
  937. 2006-11-07 Gert Driesen <[email protected]>
  938. * TabControlTest.cs: Added test for bug #79847.
  939. 2006-11-04 Chris Toshok <[email protected]>
  940. * ControlTest.cs: enable a bunch more of these on linux, and split
  941. out problematic areas into smaller NotWorking tests.
  942. 2006-11-04 Chris Toshok <[email protected]>
  943. * FormTest.cs: add a few more tests to determine various aspects
  944. of the Close() method.
  945. 2006-11-04 Chris Toshok <[email protected]>
  946. * FormTest.cs: add a test to more accurately test for bug #79155
  947. (make sure an ObjectDisposedException is thrown if you Show() a
  948. Form you just Close()'d).
  949. 2006-11-04 Gert Driesen <[email protected]>
  950. * TreeNodeCollectionTest.cs: Added tests for TreeNodeCollection.
  951. 2006-11-04 Gert Driesen <[email protected]>
  952. * ComboBoxTests.cs: Moved to correct namespace. Added test for bug
  953. #79812. Added (NotWorking) SelectedText tests.
  954. 2006-11-01 Gert Driesen <[email protected]>
  955. * TextBoxTest.cs: Added tests for part of bug #79799.
  956. 2006-11-01 Gert Driesen <[email protected]>
  957. * ControlTest.cs: Fixed build using csc 1.x.
  958. 2006-10-30 Alexander Olk <[email protected]>
  959. * PictureBoxTest.cs: Enable the previously not working
  960. ToStringMethodTest and move the not working Image property
  961. test to its own method.
  962. * UpDownTest.cs: Added
  963. 2006-10-29 Chris Toshok <[email protected]>
  964. * ControlTest.cs: correct namespace and add TopLevelControlTest
  965. for bug #79781.
  966. 2006-10-29 Alexander Olk <[email protected]>
  967. * FormTest.cs: Fix typo.
  968. 2006-10-13 Gert Driesen <[email protected]>
  969. * PropertyGridTest.cs: Enabled previously not-working tests.
  970. 2006-10-13 Gert Driesen <[email protected]>
  971. * PropertyGridTest.cs: Added some tests for PropertyGrid.
  972. 2006-10-13 Andreia Gaita <[email protected]>
  973. * FocusTest.cs: add more test cases for GetNextControl.
  974. see #78650
  975. 2006-10-11 Chris Toshok <[email protected]>
  976. * ToolBarTest.cs: add test for ToolBarButton rectangles.
  977. 2006-10-06 Gert Driesen <[email protected]>
  978. * ListViewCollectionsTest.cs: Added tests for bug #79415.
  979. * ListViewTest.cs: Enabled test for bug #79416.
  980. 2006-10-03 Sebastien Pouliot <[email protected]>
  981. * ContainerControlTest.cs: New. Add a few test cases for
  982. GetContainerControl method.
  983. 2006-10-02 Sebastien Pouliot <[email protected]>
  984. * ButtonTest.cs: Activate tests for ButtonBaseAccessibleObject.
  985. 2006-10-02 Sebastien Pouliot <[email protected]>
  986. * ButtonTest.cs: Added new test cases for ButtonBaseAccessibleObject
  987. as NonWorking (see bug #79552). Fixed line-endings.
  988. 2006-09-22 Sebastien Pouliot <[email protected]>
  989. * SystemInformationTest.cs: Add tests case for MenuFont.
  990. 2006-09-18 Jonathan Pobst <[email protected]>
  991. * EventArgsTest.cs: Add tests for ToolStrip*EventArgs.
  992. 2006-09-13 Jonathan Pobst <[email protected]>
  993. * SplitContainerTests.cs: Added.
  994. 2006-09-11 Gert Driesen <[email protected]>
  995. * ListViewTest.cs: Added test for bug #79076. Added tests for
  996. sorting bug fixes. Added tests for CheckBoxes and MultiSelect (marked
  997. NotWorking).
  998. * ListViewCollectionsTest.cs: Added tests for SelectedItemCollection
  999. and ListViewItemCollection fixes.
  1000. 2006-09-01 Carlos Alberto Cortez <[email protected]>
  1001. * ComboBoxTest.cs: Add tests for sorting and selection handling.
  1002. Deal with a couple of exception mismatches in 2_0.
  1003. 2006-08-21 Carlos Alberto Cortez <[email protected]>
  1004. * ComboBoxTest.cs: Add tests for CB.ObjectCollection
  1005. methods throwing ArgumentNullException.
  1006. 2006-08-18 Carlos Alberto Cortez <[email protected]>
  1007. * ComboBoxTest.cs: Add tests for adding/modifying null items
  1008. in ObjectCollection.
  1009. * ListBox.cs: Likewise.
  1010. 2006-08-08 Chris Toshok <[email protected]>
  1011. * GridTableStylesCollectionTest.cs: make this fixture public so
  1012. it's actually included, and add a test for changing the
  1013. MappingName of a constituent TableStyle.
  1014. 2006-07-30 Carlos Alberto Cortez <[email protected]>
  1015. * PrintDialogTest.cs: Added.
  1016. 2006-07-21 Matt Hargett ([email protected])
  1017. * ControlTest.cs: Added tests for MinimumSize/MaximumSize
  1018. 2006-07-20 Carlos Alberto Cortez <[email protected]>
  1019. * ListControlTest.cs: Added DataSourceWrongArgumentType method
  1020. to test the exception being thrown.
  1021. 2006-07-18 Carlos Alberto Cortez <[email protected]>
  1022. * ListControlTest.cs: Added.
  1023. 2006-07-14 Jonathan Pobst <[email protected]>
  1024. * EventArgsTest.cs: Added
  1025. 2006-07-10 Chris Toshok <[email protected]>
  1026. * DataGridTest.cs: make this class public so it shows up in the
  1027. list of fixtures (and its tests get run).
  1028. * CurrencyManagerTest.cs: add a test that just spews properties
  1029. about the currency manager and the datasource, as well as a test
  1030. for the finalType field.
  1031. 2006-07-07 Chris Toshok <[email protected]>
  1032. * DataGridTableStyleTest.cs: couple more tests.
  1033. 2006-07-06 Peter Dennis Bartok <[email protected]>
  1034. * ControlTest.cs: Added "LinkLabel with link" test
  1035. 2006-06-30 Chris Toshok <[email protected]>
  1036. * DataGridTableStyleTest.cs: add a bunch of mirrored tests for the
  1037. default DataGridTableStyle.
  1038. 2006-06-23 Chris Toshok <[email protected]>
  1039. * PropertyManagerTest.cs: new tests regarding the
  1040. [Related]PropertyManager class.
  1041. 2006-06-19 Peter Dennis Bartok <[email protected]>
  1042. * ControlTest.cs: Added tests for enabled state inheritance
  1043. 2006-06-19 Chris Toshok <[email protected]>
  1044. * CurrencyManagerTest.cs: add some tests for related currency
  1045. managers.
  1046. * BindingContextTest.cs: add a test for
  1047. BindingContext.CollectionChanged -=. Also add a test for passing
  1048. null for data_member to BindingContext.Contains.
  1049. 2006-06-06 Carlos Alberto Cortez <[email protected]>
  1050. * FormTest.cs: Add SetDialogResult, to test Form.DialogResult
  1051. setter.
  1052. 2006-06-01 Chris Toshok <[email protected]>
  1053. * CurrencyManagerTest.cs: add a few tests to see what events are
  1054. being emitted in which order from AddNew, CancelCurrentEdit and
  1055. EndCurrentEdit.
  1056. 2006-05-31 Peter Dennis Bartok <[email protected]>
  1057. * LabelTest.cs:
  1058. - Added (still unused) fuzzy compare for events
  1059. - Disabled event order tests, they are too strict
  1060. * ScrollBarTest.cs: Disabled event order tests, are too strict
  1061. 2006-05-25 Jackson Harper <[email protected]>
  1062. * TreeViewTest.cs: Add a couple of default properties. Put in
  1063. correct namespace.
  1064. * TabControlTest.cs: Put in correct namespace.
  1065. 2006-05-25 Atsushi Enomoto <[email protected]>
  1066. * BindingContextTest.cs : added more tests for Item, Contains()
  1067. and GetEnumerator().
  1068. 2006-05-18 Sebastien Pouliot <[email protected]>
  1069. * PaintEventArgsTest.cs: New. Unit tests for PaintEventArgs.
  1070. 2006-05-18 Atsushi Enomoto <[email protected]>
  1071. Some compat fixes found by make run-test-ondotnet:
  1072. * ListBoxTest.cs : they don't throw exceptions.
  1073. * RichTextBoxTest.cs,
  1074. ScrollBarTest.cs,
  1075. ComboBoxTest.cs,
  1076. ComboBoxTests.cs : Commented some lines out since they are
  1077. environment (especially desktop theme) dependent.
  1078. TabControlTest.cs : SetSelectedIndex() was my bad that the test
  1079. needed the tab control be drawn to pass the test.
  1080. Some tests are env. dependent (as well as others).
  1081. 2006-05-16 Miguel de Icaza <[email protected]>
  1082. * DataGridTest.cs: Add a test case based on 78420, confirm that
  1083. the fix works.
  1084. 2006-05-15 Atsushi Enomoto <[email protected]>
  1085. * TabControlTest.cs : added test for bug #78395.
  1086. 2006-04-16 Gert Driesen <[email protected]>
  1087. * TabControlTest.cs: Added test for bug #78121. Marked failing tests
  1088. NotWorking. Set eol-style to native.
  1089. 2006-04-12 Peter Dennis Bartok <[email protected]>
  1090. * ControlTest.cs: Added backcolor tests related to transparency
  1091. (bug #78026)
  1092. 2006-03-31 Peter Dennis Bartok <[email protected]>
  1093. * ControlTest.cs: Ignore Invoke test, it hangs
  1094. 2006-02-28 Matt Hargett ([email protected])
  1095. * ComboBoxTests.cs: Added
  1096. 2006-02-02 Peter Dennis Bartok <[email protected]>
  1097. * ControlTest.cs: Added test for layout nesting
  1098. * MonthCalendarTest.cs: Fixed typo in class name
  1099. 2005-12-01 Jackson Harper <[email protected]>
  1100. * TreeNodeTest.cs: TreeNodeTest.cs : Added namespace +
  1101. SingleNodeIndexTest.
  1102. - Fixed warning CS0219. Patches by Dieter Bremes
  1103. 2005-11-12 Pedro Martínez Juliá <[email protected]>
  1104. * DataGridViewElementTest.cs DataGridViewBandTest.cs
  1105. DataGridViewCellTest.cs DataGridViewAdvancedBorderStyleTest.cs
  1106. DataGridViewCellStyleTest.cs DataGridViewRowTest.cs DataGridViewTest.cs:
  1107. Add some DataGridView tests.
  1108. 2005-11-11 Ankit Jain <[email protected]>
  1109. * RichTextBoxTest.cs: Fix typos.
  1110. 2005-11-09 Peter Dennis Bartok <[email protected]>
  1111. * RichTextBoxTest.cs: Added Find() tests
  1112. 2005-11-05 Kornél Pál <[email protected]>
  1113. * LabelPropertyTest.cs: Updated product version to 1.1.4322.2032 (1.1 SP1).
  1114. 2005-10-18 Jordi Mas i Hernandez <[email protected]>
  1115. * ListViewCollectionsTest.cs: Add tests for the ListView Collections
  1116. 2005-10-17 Ritvik Mayank <[email protected]>
  1117. * TabControlTest.cs : Added test case for TabControl
  1118. 2005-10-16 Ritvik Mayank <[email protected]>
  1119. * TrackBarTest.cs : Added test case for TrackBar
  1120. 2005-10-16 Jordi Mas i Hernandez <[email protected]>
  1121. * DataGridBoolColumn.cs: fixes warning
  1122. 2005-10-10 Peter Dennis Bartok <[email protected]>
  1123. * GenerateControlStyleTest.cs, ControlStyleTest.cs: Flipped
  1124. order for want and actual to avoid misleading errors
  1125. 2005-10-07 Peter Dennis Bartok <[email protected]>
  1126. * GenerateControlStyleTest.cs: Code to auto-generate the
  1127. source file ControlStyleTest.cs
  1128. * ControlStyleTest.cs: Tests for testing ControlStyles
  1129. 2005-09-28 Hisham Mardam Bey <[email protected]>
  1130. * Common.cs : Add common things here.
  1131. * LabelTest.cs : Remove common declarations to Common.cs
  1132. * ScrollBarTest.cs : Remove common declarations to Common.cs
  1133. Add more propery range / exception tests
  1134. Add more event order tests
  1135. Fix Mouse tests.
  1136. Add event arg tests.
  1137. 2005-09-27 Hisham Mardam Bey <[email protected]>
  1138. * LabelTest.cs : Added more event tests (external handlers)
  1139. Added event arg checks
  1140. Fixed OnPaint tests.
  1141. Seperated invalidation tests.
  1142. 2005-09-26 Hisham Mardam Bey <[email protected]>
  1143. * ScrollBarTest.cs : Add more tests for event firing order
  1144. Messages to simulate mouse events
  1145. 2005-09-23 Ritvik Mayank <[email protected]>
  1146. * ErrorProviderTest.cs : Added test case for ErrorProvider
  1147. 2005-09-23 Hisham Mardam Bey <[email protected]>
  1148. * LabelTest.cs : Added messages to simulate Key* events.
  1149. Key* events have tests now.
  1150. 2005-09-22 Hisham Mardam Bey <[email protected]>
  1151. * LabelTest.cs : Implement event firing order tests.
  1152. * ScrollBarTest.cs : Implement event firing order tests.
  1153. 2005-09-22 Jordi Mas i Hernandez <[email protected]>
  1154. * MenuTest.cs: Fixes some tests
  1155. * MenuItemTest.cs: New unit test
  1156. 2005-09-21 Hisham Mardam Bey <[email protected]>
  1157. * LabelTest.cs : Several new tests.
  1158. * ScrollBarTest.cs : Several new tests.
  1159. * bitmaps : added dir containing images for tests.
  1160. 2005-09-21 Jordi Mas i Hernandez <[email protected]>
  1161. * ListViewItemTest.cs: New unit test
  1162. 2005-09-20 Jordi Mas i Hernandez <[email protected]>
  1163. * ButtonTest.cs, LabelTest.cs, ControlEventTest.cs, ScrollBarTest.cs,
  1164. LabelPropertyTest.cs, ProgressBarTest.cs, StatusBarTest.cs,
  1165. ImageListTest.cs, MonthCalendarTest.cs, ControlTest.cs,
  1166. ListBoxEventTest.cs, TreeViewTest.cs, TestImageIndexConverter.cs,
  1167. ToolBarTest.cs, MenuTest.cs
  1168. Remove all the tests that are giving errors. All of them should
  1169. be reviewed. Right now having this text throwing 40 errors do not
  1170. help at all to do regression testing. Peter has already assigned
  1171. a group of controls to every developer that will be tested and
  1172. reviewed.
  1173. 2005-09-20 Ritvik Mayank <[email protected]>
  1174. * PictureBoxTest.cs : Test case for PictureBox
  1175. 2005-09-08 Ritvik Mayank <[email protected]>
  1176. * MonthCalendarTest.cs : Test case for MonthCalendar
  1177. 2005-08-29 Ritvik Mayank <[email protected]>
  1178. * ProgressBarTest.cs : Test case for ProgressBar
  1179. * ToolBarTest.cs : Test case for ToolBar
  1180. * ToolTipTest.cs : Test case for ToolTip
  1181. * RichTextBoxTest.cs : Test case for RichTextBox
  1182. 2005-08-16 Martin Baulig <[email protected]>
  1183. * ControlTest.cs: Renamed namespace `MWF.Test' -> `MWF.MonoTest'
  1184. to make it compile.
  1185. 2005-08-16 Ritvik Mayank <[email protected]>
  1186. * ScrollBarTest.cs, ImageListTest.cs, CheckedListBoxTest.cs, CheckedListBoxEventTest.cs, MenuTest.cs,
  1187. ListViewTest.cs: enhancement and cleanup
  1188. 2005-08-16 Ritvik Mayank <[email protected]>
  1189. * ImageListTest.cs : Test case for ImageList
  1190. * RadioButtonTest.cs : Test case for RadioButton
  1191. * ScrollBarTest.cs : Test case for ScrollBar
  1192. * StatusBatTest.cs : Test case for StatusBar
  1193. 2005-08-10 Ritvik Mayank <[email protected]>
  1194. * ControlTest.cs : Commented out test for GetChildAtPointSkip (feature not
  1195. yet implemented)
  1196. 2005-08-08 Jordi Mas i Hernandez <[email protected]>
  1197. * ComboBoxTest.cs: new tests for properties, exceptions, and colletions
  1198. * ListBoxTest.cs: new tests for properties, exceptions, and colletionss
  1199. 2005-08-06 Ritvik Mayank <[email protected]>
  1200. * ComboBoxTest.cs, ListBoxTest.cs : Cleanup, added few more tests
  1201. 2005-08-05 Ritvik Mayank <[email protected]>
  1202. * ButtonTest.cs, ImageListTest.cs, ControlEventTest.cs,
  1203. LabelPropertyTest.cs, CheckBoxTest.cs, ListBoxEventTest.cs,
  1204. CheckBoxEventTest.cs, CheckedListBoxTest.cs, TextBoxTest.cs,
  1205. CheckedListBoxEventTest.cs, FormTest.cs, MenuTest.cs,
  1206. FormEventTest.cs, GroupBoxTest.cs, ListViewTest.cs,
  1207. ListViewEventTest.cs :
  1208. Cleanup, Ignored tests which need manual intervention,
  1209. work still in progress.
  1210. 2005-08-05 Jordi Mas i Hernandez <[email protected]>
  1211. * DataGridTextBoxColumnTest.cs: test fixes and enhancements
  1212. * GridTableStylesCollectionTest.cs: test fixes and enhancements
  1213. * DataGridTest.cs: test fixes and enhancements
  1214. * DataGridCellTest.cs: New unit test
  1215. * GridColumnStylesCollectionTest.cs: test fixes and enhancements
  1216. * DataGridTableStyleTest.cs: test fixes and enhancements
  1217. 2005-08-04 Peter Dennis Bartok <[email protected]>
  1218. * ControlTest.cs: Cleanup, fixed commented out tests with syntax
  1219. errors, streamlined a few tests, added full tab order test, still
  1220. work in progress
  1221. 2005-08-02 Ritvik Mayank <[email protected]>
  1222. * FormTest.cs : Test case for Form
  1223. * GropBoxTest : Test case for GroupBox
  1224. * MenuTest.cs : Test case for Menu
  1225. * ImageListTest.cs : Test case for ImageList
  1226. 2005-07-26 Ritvik Mayank <[email protected]>
  1227. * ListViewTest.cs : Test case for ListView
  1228. * ListViewEventTest.cs : Test case for ListView events
  1229. * ComboBoxTest.cs : Test case for ComboBox
  1230. * FormEventTest.cs : Test case for Form events
  1231. 2005-07-12 Ritvik Mayank <[email protected]>
  1232. * CheckBoxTest.cs : Test case for CheckBox
  1233. * CheckBoxEventTest.cs : Test case for CheckBox events
  1234. * CheckedListBoxTest.cs : Test case for CheckedListBox
  1235. * CheckedListBoxEventTest.cs : Test case for CheckedListBox events
  1236. 2005-07-05 Jordi Mas i Hernandez <[email protected]>
  1237. * DataGridTextBoxColumnTest.cs: Test case
  1238. * GridTableStylesCollectionTest.cs: Test case
  1239. * DataGridTest.cs: Test case
  1240. * GridColumnStylesCollectionTest.cs: Test case
  1241. * DataGridTableStyleTest.cs: Test case
  1242. 2005-07-04 Ritvik Mayank <[email protected]>
  1243. * ListBoxTest.cs : Test Cases for ListBox Properties and Methods
  1244. * ListBoxEventTest.cs : Test Cases for ListBox Events
  1245. 2005-06-13 Ritvik Mayank <[email protected]>
  1246. * TextBoxTest.cs : Test Cases for TextBox
  1247. * BUttonTest.cs : Test Cases for Buttons
  1248. 2005-05-11 Ritvik Mayank <[email protected]>
  1249. * ControlEventTest.cs : Test Cases for Events
  1250. 2005-05-02 Ritvik Mayank <[email protected]>
  1251. * ControlTest.cs : Minor modifications
  1252. 2005-05-02 Ritvik Mayank <[email protected]>
  1253. * ControlTest.cs : Test for Control
  1254. 2005-04-25 Ritvik Mayank <[email protected]>
  1255. * LabelPropertyTest.cs : Test for Label
  1256. 2004-11-29 Marek Safar <[email protected]>
  1257. * TreeViewTest.cs : Test for TreeView
  1258. * TreeNodeTest.cs : Test for TreeNode
  1259. 2004-11-29 Ravindra <[email protected]>
  1260. * ImageIndexConverter.cs : Test for ImageIndexConversion.