ChangeLog 25 KB

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