ChangeLog 57 KB

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