ChangeLog 24 KB

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