ChangeLog 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  1. 2006-12-31 Chris Toshok <[email protected]>
  2. * ControlTest.cs: new test for Anchor/Dock interactions. Also add
  3. tests for Control.SetTopLevel.
  4. 2006-12-31 Andreia Gaita <[email protected]>
  5. * ContainerControlTest.cs / FocusTest.cs: Moved Gert's
  6. ActiveControl tests to FocusTest, for easier management.
  7. Add Validation tests.
  8. 2006-12-31 Gert Driesen <[email protected]>
  9. * UpDownTest.cs: Added tests for DomainUpDown and NumericUpDown.
  10. 2006-12-31 Gert Driesen <[email protected]>
  11. * ToolBarTest.cs: Added test for bug #80416.
  12. 2006-12-30 Gert Driesen <[email protected]>
  13. * ContainerControlTest.cs: Added tests for ActiveControl.
  14. 2006-12-30 Chris Toshok <[email protected]>
  15. * DefaultLayoutTest.cs: add some more variants for the test for
  16. 80336, and remove the NotWorking from the 80336 test.
  17. * SendKeysTest.cs: mark these tests as not working with Xvfb so I
  18. can exclude them.
  19. 2006-12-29 Gert Driesen <[email protected]>
  20. * DataGridTest.cs: Fixed compiler warnings.
  21. 2006-12-29 Gert Driesen <[email protected]>
  22. * ControlTest.cs: Marked FontTest and ResetFontTest as NotWorking
  23. until Theme.DefaultFont change is approved.
  24. 2006-12-29 Chris Toshok <[email protected]>
  25. * ControlEventTest.cs: add a test to determine the ordering of
  26. Layout/Resize events.
  27. 2006-12-29 Gert Driesen <[email protected]>
  28. * TreeNodeTest.cs: Fixed FullPathException test on 2.0 profile.
  29. 2006-12-29 Gert Driesen <[email protected]>
  30. * ControlTest.cs: Added test for Font and ResetFont.
  31. * DataGridTest.cs: Fixed CaptionFont test on 2.0 profile.
  32. 2006-12-29 Gert Driesen <[email protected]>
  33. * ControlTest.cs: Improved DoubleBufferedTest.
  34. 2006-12-28 Chris Toshok <[email protected]>
  35. * ControlTest.cs: add a test to check whether parent.PerformLayout
  36. is called from OnResized (it isn't).
  37. * DefaultLayoutTest.cs: new file, add a bunch of anchor tests,
  38. including the (not working) test case in bug #80336. Move the
  39. docking/undocking tests here.
  40. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  41. * ControlTest.cs: More tests for double buffers.
  42. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  43. * ControlTest.cs: Added double buffering tests.
  44. 2006-12-27 Gert Driesen <[email protected]>
  45. * ControlTest.cs: Added DoubleBuffered test. Added IsHandleCreated
  46. test for invisible control.
  47. 2006-12-27 Gert Driesen <[email protected]>
  48. * MonthCalendarTest.cs: Fixed exception tests for MaxSelectionCount,
  49. MaxDate and MinDate on 2.0 profile. Removed extra tabs.
  50. 2006-12-27 Jonathan Pobst <[email protected]>
  51. * ToolStripButtonTest.cs, ToolStripComboBoxTest.cs, ToolStripControlHostTest.cs,
  52. ToolStripItemTest.cs, ToolStripLabelTest.cs, ToolStripProgressBarTest.cs,
  53. ToolStripSeparatorTest.cs, ToolStripTest.cs, ToolStripTextBoxTest.cs: Added.
  54. 2006-12-27 Rolf Bjarne Kvinge <[email protected]>
  55. * MonthCalendarTest.cs: Added test for Click and DoubleClick events.
  56. 2006-12-27 Gert Driesen <[email protected]>
  57. * ScrollableControlTest.cs: Added tests for AutoScroll and
  58. AutoScrollMinSize.
  59. 2006-12-26 Gert Driesen <[email protected]>
  60. * ComboBoxTest.cs: Improved tests for DropDownWidth and ItemHeight.
  61. 2006-12-26 Rolf Bjarne Kvinge <[email protected]>
  62. * ControlTest.cs: Added NotWorking test for DoubleBuffered.
  63. 2006-12-26 Gert Driesen <[email protected]>
  64. * DataGridViewCellStyleTest.cs: Added tests for FormatProvider,
  65. IsFormatProviderDefault.
  66. * DataGridViewTest.cs: Reworked ColumnCount, ColumnHeadersHeight,
  67. RowHeaderWidth tests. Added DefaultSize, *DefaultCellStyle tests.
  68. 2006-12-23 Gert Driesen <[email protected]>
  69. * DateTimePickerTest.cs: Fixed line endings.
  70. * upDownTest.cs: Added tests for BeginInit, EndInit, UpButton, Value.
  71. 2006-12-23 Daniel Nauck <[email protected]>
  72. * UserControlTest.cs: Add.
  73. 2006-12-23 Gert Driesen <[email protected]>
  74. * ControlTest.cs: Enabled test for bug #80280.
  75. 2006-12-21 Gert Driesen <[email protected]>
  76. * RichTextBoxTest.cs: Added test for bug #80301.
  77. * TextBoxTest.cs: Added test for bug #80301.
  78. 2006-12-21 Daniel Nauck <[email protected]>
  79. * ComboBoxTest.cs,
  80. TextBoxTest.cs: Added AutoComplete property tests.
  81. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  82. * DateTimePickerTest.cs: Created.
  83. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  84. * MonthCalendarTest.cs:
  85. - Enable tests again.
  86. - Added tests for *BoldedDates.
  87. * ControlTest.cs: Added test for BackgroundImageLayout.
  88. 2006-12-19 Chris Toshok <[email protected]>
  89. * DataGridViewBandTest.cs: nuke this file, as there's no way to
  90. construct a DataGridViewBand in isolation (exception through
  91. reflection).
  92. 2006-12-19 Chris Toshok <[email protected]>
  93. * RowStyleTest.cs: unit tests for RowStyle.
  94. * ColumnStyleTest.cs: unit tests for ColumnStyle.
  95. 2006-12-19 Carlos Alberto Cortez <[email protected]>
  96. * ListViewCollectionsTest.cs: Added tests for the new 2.0
  97. methods and properties (SelectedIndexCollection,
  98. SelectedItemCollection, and ListViewSubItemCollection).
  99. * ListViewItemTest.cs: Added test for ImageKey 2.0 property.
  100. 2006-12-19 Gert Driesen <[email protected]>
  101. * ListViewItemTest.cs: Added tests for ListViewSubItemCollection's
  102. AddRange overloads.
  103. * TreeViewTest.cs: Fixed ExpandAll tests.
  104. 2006-12-19 Daniel Nauck <[email protected]>
  105. * ApplicationTest.cs: Restart () test is 2.0 only.
  106. 2006-12-19 Daniel Nauck <[email protected]>
  107. * ApplicationTest.cs: Added test for Restart ().
  108. 2006-12-18 Rolf Bjarne Kvinge <[email protected]>
  109. * MonthCalendarTest.cs: Added test for DefaultMargin.
  110. 2006-12-18 Daniel Nauck <[email protected]>
  111. * DataGridViewAdvancedBorderStyleTest.cs,
  112. DataGridViewRowTest.cs,
  113. DataGridViewElementTest.cs,
  114. DataGridViewCellTest.cs,
  115. DataGridViewCellStyleTest.cs,
  116. DataGridViewTest.cs: fixed NUnit obsolete warnings and
  117. DataGridView tests against .NET 2.0
  118. 2006-12-17 Daniel Nauck <[email protected]>
  119. * ButtonTest.cs: Added tests for FlatButtonAppearance.
  120. 2006-12-17 Gert Driesen <[email protected]>
  121. * TreeViewTest.cs: Added tests for bug #80284.
  122. 2006-12-17 Gert Driesen <[email protected]>
  123. * ControlTest.cs: Added (notworking) test for bug #80280.
  124. Removed extra tabs.
  125. 2006-12-16 Andreia Gaita <[email protected]>
  126. * TabControlTest.cs: Fixed SelectedIndex tests
  127. for MS.NET 2.0
  128. 2006-12-16 Andreia Gaita <[email protected]>
  129. * SendKeysTest.cs: Test cases for SendKeys
  130. These tests can only run in ms.net one at a time.
  131. Since ms.net apparently hooks the keyboard to
  132. implement this, running two tests in a row
  133. makes the second test run before the hook
  134. of the first test is released, effectively
  135. hanging the keyboard. CTRL-ALT-DEL releases
  136. the keyboard, but the test still hangs.
  137. Running each test separately works.
  138. 2006-12-16 Daniel Nauck <[email protected]>
  139. * AutoCompleteStringCollectionTest.cs: new tests for AutoCompleteStringCollection.
  140. 2006-12-16 Daniel Nauck <[email protected]>
  141. * PaddingTest.cs: new tests for Padding.
  142. 2006-12-15 Daniel Nauck <[email protected]>
  143. * ListViewCollectionsTest.cs: test works now on the 1.1 profile.
  144. * ListViewItemTest.cs: add new ListViewSubItem text property test.
  145. 2006-12-15 Daniel Nauck <[email protected]>
  146. * ListViewCollectionsTest.cs: new not working junk add test for ListViewItemCollection
  147. 2006-12-15 Daniel Nauck <[email protected]>
  148. * ListViewCollectionsTest.cs: new ListViewItemCollection AddRange tests
  149. 2006-12-15 Daniel Nauck <[email protected]>
  150. * ListViewCollectionsTest.cs: new ListViewItemCollection indexer test for #80199.
  151. 2006-12-15 Daniel Nauck <[email protected]>
  152. * ListViewGroupTest.cs: new tests for ListViewGroups.
  153. * ListViewGroupCollectionTest.cs: new tests for ListViewGroupCollections.
  154. 2006-12-14 Gert Driesen <[email protected]>
  155. * TabControlTest.cs: Added tests for Control.RemoveAt.
  156. 2006-12-13 Carlos Alberto Cortez <[email protected]>
  157. * ListViewItemTest.cs:
  158. * ListViewCollectionsTest.cs: Add tests for the new 2.0
  159. ListViewItemCollection methods (IndexOfKey, ContainsKey,
  160. new indexer overload, Find, RemoveByKey).
  161. 2006-12-13 Gert Driesen <[email protected]>
  162. * TextBoxTest.cs: Added test for bug #80163.
  163. 2006-12-13 Gert Driesen <[email protected]>
  164. * ControlTest.cs: Improved Region test.
  165. 2006-12-12 Andreia Gaita <[email protected]>
  166. * ControlTest.cs: Add region tests.
  167. 2006-12-12 Rolf Bjarne Kvinge <[email protected]>
  168. * ControlTest.cs: add tests for WM_PARENTNOTIFY.
  169. 2006-12-11 Chris Toshok <[email protected]>
  170. * ControlTest.cs: add some unit tests for null parameters to some
  171. of the ControlCollection methods.
  172. 2006-12-11 Gert Driesen <[email protected]>
  173. * ControlTest.cs: Added test for invalid Dock value.
  174. 2006-12-11 Andreia Gaita <[email protected]>
  175. * TabControlTest.cs: add tests to check if SelectedIndex is
  176. properly set if the TabControl has no pages, before and
  177. after the handle is created
  178. 2006-12-10 Chris Toshok <[email protected]>
  179. * ColumnClickEventArgsTest.cs: new tests.
  180. 2006-12-10 Gert Driesen <[email protected]>
  181. * TabControlTest.cs: Added SelectedIndex tests.
  182. 2006-12-08 Chris Toshok <[email protected]>
  183. * ButtonTest.cs: add tests for DialogResult changes when setting
  184. Form.AcceptButton and Form.CancelButton.
  185. 2006-12-08 Chris Toshok <[email protected]>
  186. * MenuItemTest.cs: add test for menu item events when cloning menu
  187. items. Tests for the bug in #80183.
  188. 2006-12-06 Chris Toshok <[email protected]>
  189. * FormTest.cs: make sure Form.ImeMode is NoControl by default.
  190. * ButtonTest.cs: add a unit test for Button.DefaultImeMode.
  191. 2006-12-06 Chris Toshok <[email protected]>
  192. * RadioButtonTest.cs: add a couple of test involving TabStop.
  193. 2006-12-06 Chris Toshok <[email protected]>
  194. * ImageListTest.cs: add a rather complicated series of assertions
  195. about the imagelist ShouldSerialize/CanReset methods. these pass
  196. on MS and mono now, though. yay.
  197. 2006-12-06 Jackson Harper <[email protected]>
  198. * TextBoxTest.cs: Add a test for Modified property.
  199. - We need to put something on the clipboard before we can paste.
  200. 2006-12-04 Jackson Harper <[email protected]>
  201. * TextBoxTest: More of these tests work now.
  202. - Add a test to ensure that recieving focus selects all of the
  203. text
  204. 2006-12-04 Chris Toshok <[email protected]>
  205. * PrintDialogTest.cs: add [Category("Printing")] to all these
  206. tests so I can exclude them.
  207. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  208. * StatusBarPanelTest.cs: Added a test for invalid
  209. minimum widths.
  210. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  211. * MdiFormTest.cs: Change a few tests to dispose of
  212. the form when the test is finished.
  213. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  214. * MdiFormTest.cs: Added a few NotWorking tests for
  215. initial form location.
  216. 2006-12-04 Everaldo Canuto <[email protected]>
  217. * LabelTest.cs: Add tests for sizes, test for bug #80137.
  218. 2006-12-01 Rolf Bjarne Kvinge <[email protected]>
  219. * MdiFormTest.cs: All current NotWorking tests are now
  220. working, added a few more tests.
  221. 2006-12-01 Gert Driesen <[email protected]>
  222. * CurrencyManagerTest.cs: Added test for bug #80107.
  223. 2006-12-01 Gert Driesen <[email protected]>
  224. * DataGridTest.cs: Fixed build.
  225. 2006-12-01 Gert Driesen <[email protected]>
  226. * DataGridTest.cs: Added tests for Font, CaptionFont and HeaderFont.
  227. 2006-12-01 Everaldo Canuto <[email protected]>
  228. * MenuTest.cs: Tag property assert for 2.0 profile.
  229. 2006-11-30 Everaldo Canuto <[email protected]>
  230. * ToolBarTest.cs:
  231. - Remove ButtonSize.Width and ButtonSize.Height assert because
  232. it depends of system metrics and diferent fonts can cause
  233. diferent sizes.
  234. - Remove "NotWorking" mark from ToolBarPropertyTest, this test
  235. now must works well.
  236. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  237. * MessageTest.cs: Added test for ToString.
  238. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  239. * MdiFormTest.cs: Text_ChildClose is no longer NotWorking.
  240. 2006-11-30 Gert Driesen <[email protected]>
  241. * MenuItemTest.cs: Added test for Text property.
  242. 2006-11-29 Chris Toshok <[email protected]>
  243. * BindingTest.cs: add two new tests.
  244. 2006-11-28 Rolf Bjarne Kvinge <[email protected]>
  245. * TrackBar.cs: Changed SizeTest and OrientationTest
  246. to work on MS with both WinXP theme and Win2K theme.
  247. 2006-11-26 Gert Driesen <[email protected]>
  248. * MdiFormTest.cs: Fixed test on (MS) 2.0 profile.
  249. 2006-11-26 Gert Driesen <[email protected]>
  250. * ControlStylesTest.cs: Fixed GetStyle for 2.0 profile.
  251. 2006-11-26 Gert Driesen <[email protected]>
  252. * FormTest.cs: Added test for bug #80052.
  253. 2006-11-25 Gert Driesen <[email protected]>
  254. * MdiFormTest.cs: Added test for bug #80036.
  255. 2006-11-24 Gert Driesen <[email protected]>
  256. * MdiFormTest.cs: Added NotWorking test for Form.Text.
  257. 2006-11-23 Gert Driesen <[email protected]>
  258. * FormTest.cs: Added test for bug #80020.
  259. * MdiFormTest.cs: Fixed typo, added additonal info.
  260. 2006-11-23 Gert Driesen <[email protected]>
  261. * MdiFormTest.cs: Improved Text test to also verify behavior when
  262. Text of MDI child or container is empty. Added NotWorking test for
  263. Text after MDI is maximized. Added comment with existing NotWorking
  264. test for ActiveMdiChild.
  265. 2006-11-23 Gert Driesen <[email protected]>
  266. * ToolBarTest.cs: Added test for bug #79863. Fixed and enabled
  267. ToStringTest.
  268. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  269. * ControlTest.cs: Added tests for #79999.
  270. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  271. * MdiFormTest.cs: Added tests for WindowState (mdi
  272. children) and Text (mdi parent with maximized mdi
  273. children).
  274. 2006-11-13 Gert Driesen <[email protected]>
  275. * ControlEventTest.cs: Added tests for Invalidated event.
  276. * TreeNodeCollectionTest.cs: Added IList indexer tests.
  277. 2006-11-12 Gert Driesen <[email protected]>
  278. * TextBoxTest.cs: Added (NotWorking) test for bug #79909.
  279. 2006-11-11 Gert Driesen <[email protected]>
  280. * TreeViewTest.cs: Added (NotWorking) tests for BeforeSelect event.
  281. 2006-11-09 Gert Driesen <[email protected]>
  282. * ListViewEventTest.cs: Added tests for SelectedIndexChanged event.
  283. * UpDownTest.cs: Fixed ToStringTest.
  284. 2006-11-09 Alexander Olk <[email protected]>
  285. * CommonDialogsTest.cs: Added
  286. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  287. * StatusBarPanelTest.cs: Added tests for bug #79842
  288. and tests for default properties.
  289. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  290. * TrackBarTest.cs: Added tests for bug #79718.
  291. 2006-11-08 Gert Driesen <[email protected]>
  292. * TextBoxTest.cs: Added test for bug #79851.
  293. 2006-11-07 Gert Driesen <[email protected]>
  294. * TabControlTest.cs: Added test for bug #79847.
  295. 2006-11-04 Chris Toshok <[email protected]>
  296. * ControlTest.cs: enable a bunch more of these on linux, and split
  297. out problematic areas into smaller NotWorking tests.
  298. 2006-11-04 Chris Toshok <[email protected]>
  299. * FormTest.cs: add a few more tests to determine various aspects
  300. of the Close() method.
  301. 2006-11-04 Chris Toshok <[email protected]>
  302. * FormTest.cs: add a test to more accurately test for bug #79155
  303. (make sure an ObjectDisposedException is thrown if you Show() a
  304. Form you just Close()'d).
  305. 2006-11-04 Gert Driesen <[email protected]>
  306. * TreeNodeCollectionTest.cs: Added tests for TreeNodeCollection.
  307. 2006-11-04 Gert Driesen <[email protected]>
  308. * ComboBoxTests.cs: Moved to correct namespace. Added test for bug
  309. #79812. Added (NotWorking) SelectedText tests.
  310. 2006-11-01 Gert Driesen <[email protected]>
  311. * TextBoxTest.cs: Added tests for part of bug #79799.
  312. 2006-11-01 Gert Driesen <[email protected]>
  313. * ControlTest.cs: Fixed build using csc 1.x.
  314. 2006-10-30 Alexander Olk <[email protected]>
  315. * PictureBoxTest.cs: Enable the previously not working
  316. ToStringMethodTest and move the not working Image property
  317. test to its own method.
  318. * UpDownTest.cs: Added
  319. 2006-10-29 Chris Toshok <[email protected]>
  320. * ControlTest.cs: correct namespace and add TopLevelControlTest
  321. for bug #79781.
  322. 2006-10-29 Alexander Olk <[email protected]>
  323. * FormTest.cs: Fix typo.
  324. 2006-10-13 Gert Driesen <[email protected]>
  325. * PropertyGridTest.cs: Enabled previously not-working tests.
  326. 2006-10-13 Gert Driesen <[email protected]>
  327. * PropertyGridTest.cs: Added some tests for PropertyGrid.
  328. 2006-10-13 Andreia Gaita <[email protected]>
  329. * FocusTest.cs: add more test cases for GetNextControl.
  330. see #78650
  331. 2006-10-11 Chris Toshok <[email protected]>
  332. * ToolBarTest.cs: add test for ToolBarButton rectangles.
  333. 2006-10-06 Gert Driesen <[email protected]>
  334. * ListViewCollectionsTest.cs: Added tests for bug #79415.
  335. * ListViewTest.cs: Enabled test for bug #79416.
  336. 2006-10-03 Sebastien Pouliot <[email protected]>
  337. * ContainerControlTest.cs: New. Add a few test cases for
  338. GetContainerControl method.
  339. 2006-10-02 Sebastien Pouliot <[email protected]>
  340. * ButtonTest.cs: Activate tests for ButtonBaseAccessibleObject.
  341. 2006-10-02 Sebastien Pouliot <[email protected]>
  342. * ButtonTest.cs: Added new test cases for ButtonBaseAccessibleObject
  343. as NonWorking (see bug #79552). Fixed line-endings.
  344. 2006-09-22 Sebastien Pouliot <[email protected]>
  345. * SystemInformationTest.cs: Add tests case for MenuFont.
  346. 2006-09-18 Jonathan Pobst <[email protected]>
  347. * EventArgsTest.cs: Add tests for ToolStrip*EventArgs.
  348. 2006-09-13 Jonathan Pobst <[email protected]>
  349. * SplitContainerTests.cs: Added.
  350. 2006-09-11 Gert Driesen <[email protected]>
  351. * ListViewTest.cs: Added test for bug #79076. Added tests for
  352. sorting bug fixes. Added tests for CheckBoxes and MultiSelect (marked
  353. NotWorking).
  354. * ListViewCollectionsTest.cs: Added tests for SelectedItemCollection
  355. and ListViewItemCollection fixes.
  356. 2006-09-01 Carlos Alberto Cortez <[email protected]>
  357. * ComboBoxTest.cs: Add tests for sorting and selection handling.
  358. Deal with a couple of exception mismatches in 2_0.
  359. 2006-08-21 Carlos Alberto Cortez <[email protected]>
  360. * ComboBoxTest.cs: Add tests for CB.ObjectCollection
  361. methods throwing ArgumentNullException.
  362. 2006-08-18 Carlos Alberto Cortez <[email protected]>
  363. * ComboBoxTest.cs: Add tests for adding/modifying null items
  364. in ObjectCollection.
  365. * ListBox.cs: Likewise.
  366. 2006-08-08 Chris Toshok <[email protected]>
  367. * GridTableStylesCollectionTest.cs: make this fixture public so
  368. it's actually included, and add a test for changing the
  369. MappingName of a constituent TableStyle.
  370. 2006-07-30 Carlos Alberto Cortez <[email protected]>
  371. * PrintDialogTest.cs: Added.
  372. 2006-07-21 Matt Hargett ([email protected])
  373. * ControlTest.cs: Added tests for MinimumSize/MaximumSize
  374. 2006-07-20 Carlos Alberto Cortez <[email protected]>
  375. * ListControlTest.cs: Added DataSourceWrongArgumentType method
  376. to test the exception being thrown.
  377. 2006-07-18 Carlos Alberto Cortez <[email protected]>
  378. * ListControlTest.cs: Added.
  379. 2006-07-14 Jonathan Pobst <[email protected]>
  380. * EventArgsTest.cs: Added
  381. 2006-07-10 Chris Toshok <[email protected]>
  382. * DataGridTest.cs: make this class public so it shows up in the
  383. list of fixtures (and its tests get run).
  384. * CurrencyManagerTest.cs: add a test that just spews properties
  385. about the currency manager and the datasource, as well as a test
  386. for the finalType field.
  387. 2006-07-07 Chris Toshok <[email protected]>
  388. * DataGridTableStyleTest.cs: couple more tests.
  389. 2006-07-06 Peter Dennis Bartok <[email protected]>
  390. * ControlTest.cs: Added "LinkLabel with link" test
  391. 2006-06-30 Chris Toshok <[email protected]>
  392. * DataGridTableStyleTest.cs: add a bunch of mirrored tests for the
  393. default DataGridTableStyle.
  394. 2006-06-23 Chris Toshok <[email protected]>
  395. * PropertyManagerTest.cs: new tests regarding the
  396. [Related]PropertyManager class.
  397. 2006-06-19 Peter Dennis Bartok <[email protected]>
  398. * ControlTest.cs: Added tests for enabled state inheritance
  399. 2006-06-19 Chris Toshok <[email protected]>
  400. * CurrencyManagerTest.cs: add some tests for related currency
  401. managers.
  402. * BindingContextTest.cs: add a test for
  403. BindingContext.CollectionChanged -=. Also add a test for passing
  404. null for data_member to BindingContext.Contains.
  405. 2006-06-06 Carlos Alberto Cortez <[email protected]>
  406. * FormTest.cs: Add SetDialogResult, to test Form.DialogResult
  407. setter.
  408. 2006-06-01 Chris Toshok <[email protected]>
  409. * CurrencyManagerTest.cs: add a few tests to see what events are
  410. being emitted in which order from AddNew, CancelCurrentEdit and
  411. EndCurrentEdit.
  412. 2006-05-31 Peter Dennis Bartok <[email protected]>
  413. * LabelTest.cs:
  414. - Added (still unused) fuzzy compare for events
  415. - Disabled event order tests, they are too strict
  416. * ScrollBarTest.cs: Disabled event order tests, are too strict
  417. 2006-05-25 Jackson Harper <[email protected]>
  418. * TreeViewTest.cs: Add a couple of default properties. Put in
  419. correct namespace.
  420. * TabControlTest.cs: Put in correct namespace.
  421. 2006-05-25 Atsushi Enomoto <[email protected]>
  422. * BindingContextTest.cs : added more tests for Item, Contains()
  423. and GetEnumerator().
  424. 2006-05-18 Sebastien Pouliot <[email protected]>
  425. * PaintEventArgsTest.cs: New. Unit tests for PaintEventArgs.
  426. 2006-05-18 Atsushi Enomoto <[email protected]>
  427. Some compat fixes found by make run-test-ondotnet:
  428. * ListBoxTest.cs : they don't throw exceptions.
  429. * RichTextBoxTest.cs,
  430. ScrollBarTest.cs,
  431. ComboBoxTest.cs,
  432. ComboBoxTests.cs : Commented some lines out since they are
  433. environment (especially desktop theme) dependent.
  434. TabControlTest.cs : SetSelectedIndex() was my bad that the test
  435. needed the tab control be drawn to pass the test.
  436. Some tests are env. dependent (as well as others).
  437. 2006-05-16 Miguel de Icaza <[email protected]>
  438. * DataGridTest.cs: Add a test case based on 78420, confirm that
  439. the fix works.
  440. 2006-05-15 Atsushi Enomoto <[email protected]>
  441. * TabControlTest.cs : added test for bug #78395.
  442. 2006-04-16 Gert Driesen <[email protected]>
  443. * TabControlTest.cs: Added test for bug #78121. Marked failing tests
  444. NotWorking. Set eol-style to native.
  445. 2006-04-12 Peter Dennis Bartok <[email protected]>
  446. * ControlTest.cs: Added backcolor tests related to transparency
  447. (bug #78026)
  448. 2006-03-31 Peter Dennis Bartok <[email protected]>
  449. * ControlTest.cs: Ignore Invoke test, it hangs
  450. 2006-02-28 Matt Hargett ([email protected])
  451. * ComboBoxTests.cs: Added
  452. 2006-02-02 Peter Dennis Bartok <[email protected]>
  453. * ControlTest.cs: Added test for layout nesting
  454. * MonthCalendarTest.cs: Fixed typo in class name
  455. 2005-12-01 Jackson Harper <[email protected]>
  456. * TreeNodeTest.cs: TreeNodeTest.cs : Added namespace +
  457. SingleNodeIndexTest.
  458. - Fixed warning CS0219. Patches by Dieter Bremes
  459. 2005-11-12 Pedro Martínez Juliá <[email protected]>
  460. * DataGridViewElementTest.cs DataGridViewBandTest.cs
  461. DataGridViewCellTest.cs DataGridViewAdvancedBorderStyleTest.cs
  462. DataGridViewCellStyleTest.cs DataGridViewRowTest.cs DataGridViewTest.cs:
  463. Add some DataGridView tests.
  464. 2005-11-11 Ankit Jain <[email protected]>
  465. * RichTextBoxTest.cs: Fix typos.
  466. 2005-11-09 Peter Dennis Bartok <[email protected]>
  467. * RichTextBoxTest.cs: Added Find() tests
  468. 2005-11-05 Kornél Pál <[email protected]>
  469. * LabelPropertyTest.cs: Updated product version to 1.1.4322.2032 (1.1 SP1).
  470. 2005-10-18 Jordi Mas i Hernandez <[email protected]>
  471. * ListViewCollectionsTest.cs: Add tests for the ListView Collections
  472. 2005-10-17 Ritvik Mayank <[email protected]>
  473. * TabControlTest.cs : Added test case for TabControl
  474. 2005-10-16 Ritvik Mayank <[email protected]>
  475. * TrackBarTest.cs : Added test case for TrackBar
  476. 2005-10-16 Jordi Mas i Hernandez <[email protected]>
  477. * DataGridBoolColumn.cs: fixes warning
  478. 2005-10-10 Peter Dennis Bartok <[email protected]>
  479. * GenerateControlStyleTest.cs, ControlStyleTest.cs: Flipped
  480. order for want and actual to avoid misleading errors
  481. 2005-10-07 Peter Dennis Bartok <[email protected]>
  482. * GenerateControlStyleTest.cs: Code to auto-generate the
  483. source file ControlStyleTest.cs
  484. * ControlStyleTest.cs: Tests for testing ControlStyles
  485. 2005-09-28 Hisham Mardam Bey <[email protected]>
  486. * Common.cs : Add common things here.
  487. * LabelTest.cs : Remove common declarations to Common.cs
  488. * ScrollBarTest.cs : Remove common declarations to Common.cs
  489. Add more propery range / exception tests
  490. Add more event order tests
  491. Fix Mouse tests.
  492. Add event arg tests.
  493. 2005-09-27 Hisham Mardam Bey <[email protected]>
  494. * LabelTest.cs : Added more event tests (external handlers)
  495. Added event arg checks
  496. Fixed OnPaint tests.
  497. Seperated invalidation tests.
  498. 2005-09-26 Hisham Mardam Bey <[email protected]>
  499. * ScrollBarTest.cs : Add more tests for event firing order
  500. Messages to simulate mouse events
  501. 2005-09-23 Ritvik Mayank <[email protected]>
  502. * ErrorProviderTest.cs : Added test case for ErrorProvider
  503. 2005-09-23 Hisham Mardam Bey <[email protected]>
  504. * LabelTest.cs : Added messages to simulate Key* events.
  505. Key* events have tests now.
  506. 2005-09-22 Hisham Mardam Bey <[email protected]>
  507. * LabelTest.cs : Implement event firing order tests.
  508. * ScrollBarTest.cs : Implement event firing order tests.
  509. 2005-09-22 Jordi Mas i Hernandez <[email protected]>
  510. * MenuTest.cs: Fixes some tests
  511. * MenuItemTest.cs: New unit test
  512. 2005-09-21 Hisham Mardam Bey <[email protected]>
  513. * LabelTest.cs : Several new tests.
  514. * ScrollBarTest.cs : Several new tests.
  515. * bitmaps : added dir containing images for tests.
  516. 2005-09-21 Jordi Mas i Hernandez <[email protected]>
  517. * ListViewItemTest.cs: New unit test
  518. 2005-09-20 Jordi Mas i Hernandez <[email protected]>
  519. * ButtonTest.cs, LabelTest.cs, ControlEventTest.cs, ScrollBarTest.cs,
  520. LabelPropertyTest.cs, ProgressBarTest.cs, StatusBarTest.cs,
  521. ImageListTest.cs, MonthCalendarTest.cs, ControlTest.cs,
  522. ListBoxEventTest.cs, TreeViewTest.cs, TestImageIndexConverter.cs,
  523. ToolBarTest.cs, MenuTest.cs
  524. Remove all the tests that are giving errors. All of them should
  525. be reviewed. Right now having this text throwing 40 errors do not
  526. help at all to do regression testing. Peter has already assigned
  527. a group of controls to every developer that will be tested and
  528. reviewed.
  529. 2005-09-20 Ritvik Mayank <[email protected]>
  530. * PictureBoxTest.cs : Test case for PictureBox
  531. 2005-09-08 Ritvik Mayank <[email protected]>
  532. * MonthCalendarTest.cs : Test case for MonthCalendar
  533. 2005-08-29 Ritvik Mayank <[email protected]>
  534. * ProgressBarTest.cs : Test case for ProgressBar
  535. * ToolBarTest.cs : Test case for ToolBar
  536. * ToolTipTest.cs : Test case for ToolTip
  537. * RichTextBoxTest.cs : Test case for RichTextBox
  538. 2005-08-16 Martin Baulig <[email protected]>
  539. * ControlTest.cs: Renamed namespace `MWF.Test' -> `MWF.MonoTest'
  540. to make it compile.
  541. 2005-08-16 Ritvik Mayank <[email protected]>
  542. * ScrollBarTest.cs, ImageListTest.cs, CheckedListBoxTest.cs, CheckedListBoxEventTest.cs, MenuTest.cs,
  543. ListViewTest.cs: enhancement and cleanup
  544. 2005-08-16 Ritvik Mayank <[email protected]>
  545. * ImageListTest.cs : Test case for ImageList
  546. * RadioButtonTest.cs : Test case for RadioButton
  547. * ScrollBarTest.cs : Test case for ScrollBar
  548. * StatusBatTest.cs : Test case for StatusBar
  549. 2005-08-10 Ritvik Mayank <[email protected]>
  550. * ControlTest.cs : Commented out test for GetChildAtPointSkip (feature not
  551. yet implemented)
  552. 2005-08-08 Jordi Mas i Hernandez <[email protected]>
  553. * ComboBoxTest.cs: new tests for properties, exceptions, and colletions
  554. * ListBoxTest.cs: new tests for properties, exceptions, and colletionss
  555. 2005-08-06 Ritvik Mayank <[email protected]>
  556. * ComboBoxTest.cs, ListBoxTest.cs : Cleanup, added few more tests
  557. 2005-08-05 Ritvik Mayank <[email protected]>
  558. * ButtonTest.cs, ImageListTest.cs, ControlEventTest.cs,
  559. LabelPropertyTest.cs, CheckBoxTest.cs, ListBoxEventTest.cs,
  560. CheckBoxEventTest.cs, CheckedListBoxTest.cs, TextBoxTest.cs,
  561. CheckedListBoxEventTest.cs, FormTest.cs, MenuTest.cs,
  562. FormEventTest.cs, GroupBoxTest.cs, ListViewTest.cs,
  563. ListViewEventTest.cs :
  564. Cleanup, Ignored tests which need manual intervention,
  565. work still in progress.
  566. 2005-08-05 Jordi Mas i Hernandez <[email protected]>
  567. * DataGridTextBoxColumnTest.cs: test fixes and enhancements
  568. * GridTableStylesCollectionTest.cs: test fixes and enhancements
  569. * DataGridTest.cs: test fixes and enhancements
  570. * DataGridCellTest.cs: New unit test
  571. * GridColumnStylesCollectionTest.cs: test fixes and enhancements
  572. * DataGridTableStyleTest.cs: test fixes and enhancements
  573. 2005-08-04 Peter Dennis Bartok <[email protected]>
  574. * ControlTest.cs: Cleanup, fixed commented out tests with syntax
  575. errors, streamlined a few tests, added full tab order test, still
  576. work in progress
  577. 2005-08-02 Ritvik Mayank <[email protected]>
  578. * FormTest.cs : Test case for Form
  579. * GropBoxTest : Test case for GroupBox
  580. * MenuTest.cs : Test case for Menu
  581. * ImageListTest.cs : Test case for ImageList
  582. 2005-07-26 Ritvik Mayank <[email protected]>
  583. * ListViewTest.cs : Test case for ListView
  584. * ListViewEventTest.cs : Test case for ListView events
  585. * ComboBoxTest.cs : Test case for ComboBox
  586. * FormEventTest.cs : Test case for Form events
  587. 2005-07-12 Ritvik Mayank <[email protected]>
  588. * CheckBoxTest.cs : Test case for CheckBox
  589. * CheckBoxEventTest.cs : Test case for CheckBox events
  590. * CheckedListBoxTest.cs : Test case for CheckedListBox
  591. * CheckedListBoxEventTest.cs : Test case for CheckedListBox events
  592. 2005-07-05 Jordi Mas i Hernandez <[email protected]>
  593. * DataGridTextBoxColumnTest.cs: Test case
  594. * GridTableStylesCollectionTest.cs: Test case
  595. * DataGridTest.cs: Test case
  596. * GridColumnStylesCollectionTest.cs: Test case
  597. * DataGridTableStyleTest.cs: Test case
  598. 2005-07-04 Ritvik Mayank <[email protected]>
  599. * ListBoxTest.cs : Test Cases for ListBox Properties and Methods
  600. * ListBoxEventTest.cs : Test Cases for ListBox Events
  601. 2005-06-13 Ritvik Mayank <[email protected]>
  602. * TextBoxTest.cs : Test Cases for TextBox
  603. * BUttonTest.cs : Test Cases for Buttons
  604. 2005-05-11 Ritvik Mayank <[email protected]>
  605. * ControlEventTest.cs : Test Cases for Events
  606. 2005-05-02 Ritvik Mayank <[email protected]>
  607. * ControlTest.cs : Minor modifications
  608. 2005-05-02 Ritvik Mayank <[email protected]>
  609. * ControlTest.cs : Test for Control
  610. 2005-04-25 Ritvik Mayank <[email protected]>
  611. * LabelPropertyTest.cs : Test for Label
  612. 2004-11-29 Marek Safar <[email protected]>
  613. * TreeViewTest.cs : Test for TreeView
  614. * TreeNodeTest.cs : Test for TreeNode
  615. 2004-11-29 Ravindra <[email protected]>
  616. * ImageIndexConverter.cs : Test for ImageIndexConversion.