ChangeLog 22 KB

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