ChangeLog 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379
  1. 2007-02-01 Everaldo Canuto <[email protected]>
  2. * TestHelper.cs: TesHelper class added. This class will provide some
  3. usefull methods that can be used to test Control derived classes,
  4. at moment only static methods GetCreateParams, IsStyleSet and
  5. IsExStyleSet is implements. A copy of WindowStyles, WindowExStyles
  6. and Msg is also available as public to help is control tests.
  7. 2007-02-01 Rolf Bjarne Kvinge <[email protected]>
  8. * ControlTest.cs: Added ControlSizeTest.
  9. 2007-01-31 Jonathan Pobst <[email protected]>
  10. * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
  11. Mark BehaviorAutoSize as NotWorking, it is font dependent.
  12. 2007-01-29 Chris Toshok <[email protected]>
  13. * ControlHandleTest.cs: make this compile against mono. we can
  14. remove the __MonoCS__ ifdefs as we add properties. Also, split
  15. out the Show() tests because they were failing and I wanted to see
  16. which other tests were passing.
  17. 2007-01-26 Jonathan Pobst <[email protected]>
  18. * PaddingConverterTest.cs: Added.
  19. 2007-01-26 Rolf Bjarne Kvinge <[email protected]>
  20. * StatusBarTest.cs: Added a few more tests.
  21. 2007-01-25 Jonathan Pobst <[email protected]>
  22. * ControlHandleTest.cs: Added. Has tests to find exactly which
  23. Methods and Properties create a Handle. Not added to sources file
  24. because it's written against MS, and we're probably missing some
  25. methods/properties.
  26. 2007-01-25 Jonathan Pobst <[email protected]>
  27. * ToolStripButtonTest.cs, ToolStripItemTest.cs, ToolStripLabelTest.cs:
  28. Try to make some tests not Font/DPI dependent.
  29. 2007-01-25 Chris Toshok <[email protected]>
  30. * SplitterTest.cs: new tests.
  31. 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
  32. * ComboBoxTest.cs: Added tests for ResetText.
  33. 2007-01-25 Rolf Bjarne Kvinge <[email protected]>
  34. * ComboBoxTest.cs: Add tests for new properties.
  35. * MdiFormTest.cs: Set ShowInTaskbar = false for main forms.
  36. 2007-01-24 Gert Driesen <[email protected]>
  37. * FormTest.cs: Added NotWorking test for bug #80604.
  38. * ColumnHeaderTest.cs: Added tests for bug #80607. Added test for
  39. properties introduced in 2.0 profile.
  40. 2007-01-24 Jonathan Pobst <[email protected]>
  41. * ComboBoxTest.cs: Add FindStringExactMaxExceptionNet20 test.
  42. * FormTest.cs: Mark BehaviorResizeOnBorderStyleChangedNotVisible as NotWorking,
  43. it's values match MS only.
  44. * LabelTest.cs: Mark AutoSizeChangedChangedTest as Ignore for 2.0 until it is
  45. reworked.
  46. * ToolStripTextBoxTest.cs: Mark PropertyModified as Ignore until a bug in TextBox
  47. is fixed. Same for Constructor: A12.
  48. 2007-01-24 Rolf Bjarne Kvinge <[email protected]>
  49. * ControlTest.cs: Marked OnPaintDoubleBufferedTest as Interactive,
  50. they'll only work if you actually have a display to show them on.
  51. 2007-01-23 Everaldo Canuto <[email protected]>
  52. * ToobarTest.cs: Comment DPI dependent asserts in ButtonSize test.
  53. 2007-01-23 Everaldo Canuto <[email protected]>
  54. * ToobarTest.cs: TooBar.ButtonSize tests added.
  55. 2007-01-23 Jonathan Pobst <[email protected]>
  56. * GridTableStylesCollectionTest.cs: Mark TestAdd as NotWorking.
  57. There is a TODO in the DataGrid source referencing that Add should allow
  58. multiple columns with the same name, but currently doesn't.
  59. 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
  60. * ControlTest.cs: Added a tests for ControlCollection and
  61. MDI children.
  62. 2007-01-23 Andreia Gaita <[email protected]>
  63. * SendKeysTest.cs: Marked interactive, they're unstable
  64. * ControlTest.cs (ControlSetTopLevelTest): TestForm marked NotWorking,
  65. we have to see why SetTopLevel is toggling the Form's visibility.
  66. 2007-01-23 Rolf Bjarne Kvinge <[email protected]>
  67. * ControlTest.cs: Make OnPaintTest NotWorking, since it only
  68. works once in a while.
  69. 2007-01-23 Chris Toshok <[email protected]>
  70. * BindingSourceTest.cs: initial BindingSource tests. not built
  71. yet.
  72. 2007-01-23 Chris Toshok <[email protected]>
  73. * DefaultLayoutTest.cs: make the docking tests independent of
  74. constants relating to the form's clientrectangle bounds, since on
  75. X it has a different value when the window isn't mapped (as in
  76. this case).
  77. 2007-01-23 Andreia Gaita <[email protected]>
  78. * DefaultLayoutTest.cs: correct TestDockFillFirst and TestDockFillLast,
  79. failing on ms.net
  80. 2007-01-23 Andreia Gaita <[email protected]>
  81. * SendKeysTest.cs: wrong value for Interval, should be > 0
  82. 2007-01-23 Andreia Gaita <[email protected]>
  83. * BindingTest.cs (BindingContextChangedTest2): Added 2.0-specific check,
  84. was failing under ms.net.
  85. * ComboBoxText.cs (FindStringExactMatchException): Add check for exception
  86. only for 1.1 - was failing under ms.net
  87. * ControlTest.cs:
  88. - AnchorDockTest: Fix incorrect assertion #5 - was failing
  89. under ms.net
  90. - TestForm: Fix incorrect assertion #4 - was failing
  91. under ms.net
  92. * TreeNodeCollectionTest.cs: Add new Add() tests for 2.0
  93. 2007-01-18 Jonathan Pobst <[email protected]>
  94. * FormTest.cs: Add test for bug #80574.
  95. 2007-01-22 Jonathan Pobst <[email protected]>
  96. * TabControlTest.cs: Add tests for SelectTab and Selected event.
  97. 2007-01-20 Jonathan Pobst <[email protected]>
  98. * DefaultLayoutTest.cs: Add tests for Dock.Fill behavior
  99. with other !Dock.Fill controls.
  100. 2007-01-20 Jonathan Pobst <[email protected]>
  101. * DefaultLayoutTest.cs: Add test for interactions between
  102. setting Dock and Anchor.
  103. 2007-01-19 Jonathan Pobst <[email protected]>
  104. * TreeNodeTest.cs: Add test for 2.0 Name property.
  105. 2007-01-19 Chris Toshok <[email protected]>
  106. * DataGridTextBoxColumnTest.cs: add a couple more tests to see how
  107. DataGrid.ReadOnly affects things.
  108. 2007-01-19 Chris Toshok <[email protected]>
  109. * DataGridTextBoxColumnTest.cs: mark TestUpdateUI as NotWorking,
  110. and add a couple of tests for the overloaded ReadOnly property.
  111. can't figure out how it's being used, maybe all it really does is
  112. chain up to base.ReadOnly.
  113. * DataGridColumnStyleTest.cs: add some tests to see if we should
  114. be mucking with the ReadOnly property when the PropertyDescriptor
  115. is set (turns out we shouldn't be).
  116. 2007-01-18 Jonathan Pobst <[email protected]>
  117. * FormTest.cs: Add test for bug #79959.
  118. 2007-01-18 Rolf Bjarne Kvinge <[email protected]>
  119. * StatusBarTest.cs: Added tests for StatusBarPanelCollection.
  120. * StatusBarPanelTest.cs: Added tests for new properties in StatusBarPanel.
  121. 2007-01-18 Jonathan Pobst <[email protected]>
  122. * NotifyIconTest.cs: Add test for Tag, ContextMenuStrip.
  123. 2007-01-18 Chris Toshok <[email protected]>
  124. * DataGridTextBoxColumnTest.cs: add some tests (some of which aren't working on mono)
  125. * DataGridTextBoxTest.cs: add some tests (some of which aren't working on mono)
  126. 2007-01-16 Chris Toshok <[email protected]>
  127. * UpDownTest.cs: add UpDownActiveControlTest.
  128. 2007-01-16 Jonathan Pobst <[email protected]>
  129. * ControlPropertyEventsTest.cs: Enable PropertyMinimumSize test.
  130. * ControlTest.cs: Move ControlCollection tests to ControlCollectionTest.cs.
  131. * EventArgsTest.cs, FlowPanelTests.cs: Change namespace to match all other tests.
  132. * FormTest.cs: Add tests for FormClosed event and Show (IWin32Window).
  133. * MenuStripTest.cs: Add test for MDI.
  134. * SplitContainerTest.cs: Change namespace, remove TestNotRelaventProperties.
  135. * ToolStripMenuItemTest.cs: Add test for MDI.
  136. * ToolStripTest.cs: Ignore ControlStyle, Un-Ignore PropertyAutoSize.
  137. 2007-01-16 Rolf Bjarne Kvinge <[email protected]>
  138. * MdiFormTest.cs: Added tests for ActiveChild for mdi parents.
  139. 2007-01-15 Everaldo Canuto <[email protected]>
  140. * MenuTest.cs: Add test for #80006, mainmenu merge operations.
  141. 2007-01-15 Everaldo Canuto <[email protected]>
  142. * MenuItemTest.cs: Remove the "NotWorking" from MenuItemMerge test.
  143. 2007-01-14 Carlos Alberto Cortez <[email protected]>
  144. * ListViewTest.cs: Add tests for new 2.0 FindItemWithText methods.
  145. 2007-01-13 Andreia Gaita <[email protected]>
  146. * ControlTest.cs: Add test to check if Exception is raised when
  147. adding a top level control (form) as a child control
  148. 2007-01-12 Gert Driesen <[email protected]>
  149. * ControlStyleTest.cs: Added style test for LinkLabel with text, but
  150. no links.
  151. 2007-01-12 Gert Driesen <[email protected]>
  152. * FocusTest.cs: Ignore tests that rely on Form.Show () synchronously
  153. generating WM_ACTIVATE on unix.
  154. * FormTest.cs: Same.
  155. 2007-01-10 Chris Toshok <[email protected]>
  156. * FocusTest.cs: Disable a couple of tests that rely on the
  157. focus/active control state being available directly after
  158. form.Show() - doesn't work on X11, since form.Show shows the
  159. window asynchronously. Also, add a large focus/enter/leave event
  160. handling test andreia and I were using to correct problems in
  161. ContainerControl.set_ActiveControl.
  162. * FormTest.cs: add a test to show that even if OnActivate is
  163. overriden and not chained up to the base class, ActiveControl is
  164. still set. Unfortunately it doesn't work on the X11 backend
  165. because Form.Show is necessarily an async operation.
  166. * ApplicationTest.cs: don't show forms in the taskbar, and dispose
  167. of them.
  168. * ApplicationContextTest.cs: same.
  169. 2007-01-10 Carlos Alberto Cortez <[email protected]>
  170. * ColumnHeaderTest.cs: Add a test for settings Width to -1 and
  171. -2 values (auto resizing).
  172. 2007-01-10 Chris Toshok <[email protected]>
  173. * ContainerControlTest.cs: add a test for setting ActiveControl to
  174. a non-child control.
  175. 2007-01-08 Jonathan Pobst <[email protected]>
  176. * FormTest.cs: Added tests for ensuring Form.OnFormClosing is called.
  177. 2007-01-08 Jonathan Pobst <[email protected]>
  178. * ControlTest.cs: Added tests for 2.0 ControlCollection methods.
  179. 2007-01-05 Gert Driesen <[email protected]>
  180. * ControlTest.cs: Added test for bug #80456.
  181. 2007-01-05 Jonathan Pobst <[email protected]>
  182. * ControlPropertyEventsTest.cs: Added. These test property getters and
  183. setters and ensure that all relevant events are called on setters for
  184. Control.
  185. 2007-01-04 Chris Toshok <[email protected]>
  186. * CommonDialogsTest.cs: disable FolderBrowserDialogTest (and add a
  187. stack trace in a comment).
  188. * RichTextBoxTest.cs: disable FindTest.
  189. 2007-01-04 Andreia Gaita <[email protected]>
  190. * FormTest.cs: disabled ActivateTest
  191. * FocusTest.cs: disabled ActiveControl_Disabled test
  192. 2007-01-04 Carlos Alberto Cortez <[email protected]>
  193. * ColumnHeaderTest.cs: New test.
  194. 2007-01-04 Jonathan Pobst <[email protected]>
  195. * CommonDialogTest.cs, CursorTest.cs, ErrorProviderTest.cs,
  196. HelpProviderTest.cs: Add tests for Tag properties.
  197. * LinkAreaTest.cs: Add test for ToString.
  198. 2007-01-03 Gert Driesen <[email protected]>
  199. * ControlTest.cs: Enabled tests after DefaultFont change. Ignore test
  200. that is DPI-dependent.
  201. * RichTextBoxTest.cs: Ignore test that is DPI-dependent.
  202. * TextBoxTest.cs: Ignore test that is DPI-dependent.
  203. 2007-01-02 Gert Driesen <[email protected]>
  204. * ControlTest.cs: Added FontHeight test.
  205. 2007-01-02 Gert Driesen <[email protected]>
  206. * ListControlTest.cs: Added test for AllowSelection.
  207. * UpDownTest.cs: MockItem is now nested class.
  208. * ListBoxTest.cs: Added test for AllowSelection.
  209. * CheckedListBoxTest.cs: Added tests for DisplayMember, GetItemText,
  210. SelectionMode, Text and ValueMember.
  211. 2007-01-01 Gert Driesen <[email protected]>
  212. * ToolBarTest.cs: Enabled test for bug #80416.
  213. 2006-12-31 Chris Toshok <[email protected]>
  214. * ControlEventTest.cs: add SizeChanged to the resize/layout event
  215. test.
  216. 2006-12-31 Chris Toshok <[email protected]>
  217. * ControlTest.cs: new test for Anchor/Dock interactions. Also add
  218. tests for Control.SetTopLevel.
  219. 2006-12-31 Andreia Gaita <[email protected]>
  220. * ContainerControlTest.cs / FocusTest.cs: Moved Gert's
  221. ActiveControl tests to FocusTest, for easier management.
  222. Add Validation tests.
  223. 2006-12-31 Gert Driesen <[email protected]>
  224. * UpDownTest.cs: Added tests for DomainUpDown and NumericUpDown.
  225. 2006-12-31 Gert Driesen <[email protected]>
  226. * ToolBarTest.cs: Added test for bug #80416.
  227. 2006-12-30 Gert Driesen <[email protected]>
  228. * ContainerControlTest.cs: Added tests for ActiveControl.
  229. 2006-12-30 Chris Toshok <[email protected]>
  230. * DefaultLayoutTest.cs: add some more variants for the test for
  231. 80336, and remove the NotWorking from the 80336 test.
  232. * SendKeysTest.cs: mark these tests as not working with Xvfb so I
  233. can exclude them.
  234. 2006-12-29 Gert Driesen <[email protected]>
  235. * DataGridTest.cs: Fixed compiler warnings.
  236. 2006-12-29 Gert Driesen <[email protected]>
  237. * ControlTest.cs: Marked FontTest and ResetFontTest as NotWorking
  238. until Theme.DefaultFont change is approved.
  239. 2006-12-29 Chris Toshok <[email protected]>
  240. * ControlEventTest.cs: add a test to determine the ordering of
  241. Layout/Resize events.
  242. 2006-12-29 Gert Driesen <[email protected]>
  243. * TreeNodeTest.cs: Fixed FullPathException test on 2.0 profile.
  244. 2006-12-29 Gert Driesen <[email protected]>
  245. * ControlTest.cs: Added test for Font and ResetFont.
  246. * DataGridTest.cs: Fixed CaptionFont test on 2.0 profile.
  247. 2006-12-29 Gert Driesen <[email protected]>
  248. * ControlTest.cs: Improved DoubleBufferedTest.
  249. 2006-12-28 Chris Toshok <[email protected]>
  250. * ControlTest.cs: add a test to check whether parent.PerformLayout
  251. is called from OnResized (it isn't).
  252. * DefaultLayoutTest.cs: new file, add a bunch of anchor tests,
  253. including the (not working) test case in bug #80336. Move the
  254. docking/undocking tests here.
  255. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  256. * ControlTest.cs: More tests for double buffers.
  257. 2006-12-28 Rolf Bjarne Kvinge <[email protected]>
  258. * ControlTest.cs: Added double buffering tests.
  259. 2006-12-27 Gert Driesen <[email protected]>
  260. * ControlTest.cs: Added DoubleBuffered test. Added IsHandleCreated
  261. test for invisible control.
  262. 2006-12-27 Gert Driesen <[email protected]>
  263. * MonthCalendarTest.cs: Fixed exception tests for MaxSelectionCount,
  264. MaxDate and MinDate on 2.0 profile. Removed extra tabs.
  265. 2006-12-27 Jonathan Pobst <[email protected]>
  266. * ToolStripButtonTest.cs, ToolStripComboBoxTest.cs, ToolStripControlHostTest.cs,
  267. ToolStripItemTest.cs, ToolStripLabelTest.cs, ToolStripProgressBarTest.cs,
  268. ToolStripSeparatorTest.cs, ToolStripTest.cs, ToolStripTextBoxTest.cs: Added.
  269. 2006-12-27 Rolf Bjarne Kvinge <[email protected]>
  270. * MonthCalendarTest.cs: Added test for Click and DoubleClick events.
  271. 2006-12-27 Gert Driesen <[email protected]>
  272. * ScrollableControlTest.cs: Added tests for AutoScroll and
  273. AutoScrollMinSize.
  274. 2006-12-26 Gert Driesen <[email protected]>
  275. * ComboBoxTest.cs: Improved tests for DropDownWidth and ItemHeight.
  276. 2006-12-26 Rolf Bjarne Kvinge <[email protected]>
  277. * ControlTest.cs: Added NotWorking test for DoubleBuffered.
  278. 2006-12-26 Gert Driesen <[email protected]>
  279. * DataGridViewCellStyleTest.cs: Added tests for FormatProvider,
  280. IsFormatProviderDefault.
  281. * DataGridViewTest.cs: Reworked ColumnCount, ColumnHeadersHeight,
  282. RowHeaderWidth tests. Added DefaultSize, *DefaultCellStyle tests.
  283. 2006-12-23 Gert Driesen <[email protected]>
  284. * DateTimePickerTest.cs: Fixed line endings.
  285. * upDownTest.cs: Added tests for BeginInit, EndInit, UpButton, Value.
  286. 2006-12-23 Daniel Nauck <[email protected]>
  287. * UserControlTest.cs: Add.
  288. 2006-12-23 Gert Driesen <[email protected]>
  289. * ControlTest.cs: Enabled test for bug #80280.
  290. 2006-12-21 Gert Driesen <[email protected]>
  291. * RichTextBoxTest.cs: Added test for bug #80301.
  292. * TextBoxTest.cs: Added test for bug #80301.
  293. 2006-12-21 Daniel Nauck <[email protected]>
  294. * ComboBoxTest.cs,
  295. TextBoxTest.cs: Added AutoComplete property tests.
  296. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  297. * DateTimePickerTest.cs: Created.
  298. 2006-12-20 Rolf Bjarne Kvinge <[email protected]>
  299. * MonthCalendarTest.cs:
  300. - Enable tests again.
  301. - Added tests for *BoldedDates.
  302. * ControlTest.cs: Added test for BackgroundImageLayout.
  303. 2006-12-19 Chris Toshok <[email protected]>
  304. * DataGridViewBandTest.cs: nuke this file, as there's no way to
  305. construct a DataGridViewBand in isolation (exception through
  306. reflection).
  307. 2006-12-19 Chris Toshok <[email protected]>
  308. * RowStyleTest.cs: unit tests for RowStyle.
  309. * ColumnStyleTest.cs: unit tests for ColumnStyle.
  310. 2006-12-19 Carlos Alberto Cortez <[email protected]>
  311. * ListViewCollectionsTest.cs: Added tests for the new 2.0
  312. methods and properties (SelectedIndexCollection,
  313. SelectedItemCollection, and ListViewSubItemCollection).
  314. * ListViewItemTest.cs: Added test for ImageKey 2.0 property.
  315. 2006-12-19 Gert Driesen <[email protected]>
  316. * ListViewItemTest.cs: Added tests for ListViewSubItemCollection's
  317. AddRange overloads.
  318. * TreeViewTest.cs: Fixed ExpandAll tests.
  319. 2006-12-19 Daniel Nauck <[email protected]>
  320. * ApplicationTest.cs: Restart () test is 2.0 only.
  321. 2006-12-19 Daniel Nauck <[email protected]>
  322. * ApplicationTest.cs: Added test for Restart ().
  323. 2006-12-18 Rolf Bjarne Kvinge <[email protected]>
  324. * MonthCalendarTest.cs: Added test for DefaultMargin.
  325. 2006-12-18 Daniel Nauck <[email protected]>
  326. * DataGridViewAdvancedBorderStyleTest.cs,
  327. DataGridViewRowTest.cs,
  328. DataGridViewElementTest.cs,
  329. DataGridViewCellTest.cs,
  330. DataGridViewCellStyleTest.cs,
  331. DataGridViewTest.cs: fixed NUnit obsolete warnings and
  332. DataGridView tests against .NET 2.0
  333. 2006-12-17 Daniel Nauck <[email protected]>
  334. * ButtonTest.cs: Added tests for FlatButtonAppearance.
  335. 2006-12-17 Gert Driesen <[email protected]>
  336. * TreeViewTest.cs: Added tests for bug #80284.
  337. 2006-12-17 Gert Driesen <[email protected]>
  338. * ControlTest.cs: Added (notworking) test for bug #80280.
  339. Removed extra tabs.
  340. 2006-12-16 Andreia Gaita <[email protected]>
  341. * TabControlTest.cs: Fixed SelectedIndex tests
  342. for MS.NET 2.0
  343. 2006-12-16 Andreia Gaita <[email protected]>
  344. * SendKeysTest.cs: Test cases for SendKeys
  345. These tests can only run in ms.net one at a time.
  346. Since ms.net apparently hooks the keyboard to
  347. implement this, running two tests in a row
  348. makes the second test run before the hook
  349. of the first test is released, effectively
  350. hanging the keyboard. CTRL-ALT-DEL releases
  351. the keyboard, but the test still hangs.
  352. Running each test separately works.
  353. 2006-12-16 Daniel Nauck <[email protected]>
  354. * AutoCompleteStringCollectionTest.cs: new tests for AutoCompleteStringCollection.
  355. 2006-12-16 Daniel Nauck <[email protected]>
  356. * PaddingTest.cs: new tests for Padding.
  357. 2006-12-15 Daniel Nauck <[email protected]>
  358. * ListViewCollectionsTest.cs: test works now on the 1.1 profile.
  359. * ListViewItemTest.cs: add new ListViewSubItem text property test.
  360. 2006-12-15 Daniel Nauck <[email protected]>
  361. * ListViewCollectionsTest.cs: new not working junk add test for ListViewItemCollection
  362. 2006-12-15 Daniel Nauck <[email protected]>
  363. * ListViewCollectionsTest.cs: new ListViewItemCollection AddRange tests
  364. 2006-12-15 Daniel Nauck <[email protected]>
  365. * ListViewCollectionsTest.cs: new ListViewItemCollection indexer test for #80199.
  366. 2006-12-15 Daniel Nauck <[email protected]>
  367. * ListViewGroupTest.cs: new tests for ListViewGroups.
  368. * ListViewGroupCollectionTest.cs: new tests for ListViewGroupCollections.
  369. 2006-12-14 Gert Driesen <[email protected]>
  370. * TabControlTest.cs: Added tests for Control.RemoveAt.
  371. 2006-12-13 Carlos Alberto Cortez <[email protected]>
  372. * ListViewItemTest.cs:
  373. * ListViewCollectionsTest.cs: Add tests for the new 2.0
  374. ListViewItemCollection methods (IndexOfKey, ContainsKey,
  375. new indexer overload, Find, RemoveByKey).
  376. 2006-12-13 Gert Driesen <[email protected]>
  377. * TextBoxTest.cs: Added test for bug #80163.
  378. 2006-12-13 Gert Driesen <[email protected]>
  379. * ControlTest.cs: Improved Region test.
  380. 2006-12-12 Andreia Gaita <[email protected]>
  381. * ControlTest.cs: Add region tests.
  382. 2006-12-12 Rolf Bjarne Kvinge <[email protected]>
  383. * ControlTest.cs: add tests for WM_PARENTNOTIFY.
  384. 2006-12-11 Chris Toshok <[email protected]>
  385. * ControlTest.cs: add some unit tests for null parameters to some
  386. of the ControlCollection methods.
  387. 2006-12-11 Gert Driesen <[email protected]>
  388. * ControlTest.cs: Added test for invalid Dock value.
  389. 2006-12-11 Andreia Gaita <[email protected]>
  390. * TabControlTest.cs: add tests to check if SelectedIndex is
  391. properly set if the TabControl has no pages, before and
  392. after the handle is created
  393. 2006-12-10 Chris Toshok <[email protected]>
  394. * ColumnClickEventArgsTest.cs: new tests.
  395. 2006-12-10 Gert Driesen <[email protected]>
  396. * TabControlTest.cs: Added SelectedIndex tests.
  397. 2006-12-08 Chris Toshok <[email protected]>
  398. * ButtonTest.cs: add tests for DialogResult changes when setting
  399. Form.AcceptButton and Form.CancelButton.
  400. 2006-12-08 Chris Toshok <[email protected]>
  401. * MenuItemTest.cs: add test for menu item events when cloning menu
  402. items. Tests for the bug in #80183.
  403. 2006-12-06 Chris Toshok <[email protected]>
  404. * FormTest.cs: make sure Form.ImeMode is NoControl by default.
  405. * ButtonTest.cs: add a unit test for Button.DefaultImeMode.
  406. 2006-12-06 Chris Toshok <[email protected]>
  407. * RadioButtonTest.cs: add a couple of test involving TabStop.
  408. 2006-12-06 Chris Toshok <[email protected]>
  409. * ImageListTest.cs: add a rather complicated series of assertions
  410. about the imagelist ShouldSerialize/CanReset methods. these pass
  411. on MS and mono now, though. yay.
  412. 2006-12-06 Jackson Harper <[email protected]>
  413. * TextBoxTest.cs: Add a test for Modified property.
  414. - We need to put something on the clipboard before we can paste.
  415. 2006-12-04 Jackson Harper <[email protected]>
  416. * TextBoxTest: More of these tests work now.
  417. - Add a test to ensure that recieving focus selects all of the
  418. text
  419. 2006-12-04 Chris Toshok <[email protected]>
  420. * PrintDialogTest.cs: add [Category("Printing")] to all these
  421. tests so I can exclude them.
  422. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  423. * StatusBarPanelTest.cs: Added a test for invalid
  424. minimum widths.
  425. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  426. * MdiFormTest.cs: Change a few tests to dispose of
  427. the form when the test is finished.
  428. 2006-12-04 Rolf Bjarne Kvinge <[email protected]>
  429. * MdiFormTest.cs: Added a few NotWorking tests for
  430. initial form location.
  431. 2006-12-04 Everaldo Canuto <[email protected]>
  432. * LabelTest.cs: Add tests for sizes, test for bug #80137.
  433. 2006-12-01 Rolf Bjarne Kvinge <[email protected]>
  434. * MdiFormTest.cs: All current NotWorking tests are now
  435. working, added a few more tests.
  436. 2006-12-01 Gert Driesen <[email protected]>
  437. * CurrencyManagerTest.cs: Added test for bug #80107.
  438. 2006-12-01 Gert Driesen <[email protected]>
  439. * DataGridTest.cs: Fixed build.
  440. 2006-12-01 Gert Driesen <[email protected]>
  441. * DataGridTest.cs: Added tests for Font, CaptionFont and HeaderFont.
  442. 2006-12-01 Everaldo Canuto <[email protected]>
  443. * MenuTest.cs: Tag property assert for 2.0 profile.
  444. 2006-11-30 Everaldo Canuto <[email protected]>
  445. * ToolBarTest.cs:
  446. - Remove ButtonSize.Width and ButtonSize.Height assert because
  447. it depends of system metrics and diferent fonts can cause
  448. diferent sizes.
  449. - Remove "NotWorking" mark from ToolBarPropertyTest, this test
  450. now must works well.
  451. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  452. * MessageTest.cs: Added test for ToString.
  453. 2006-11-30 Rolf Bjarne Kvinge <[email protected]>
  454. * MdiFormTest.cs: Text_ChildClose is no longer NotWorking.
  455. 2006-11-30 Gert Driesen <[email protected]>
  456. * MenuItemTest.cs: Added test for Text property.
  457. 2006-11-29 Chris Toshok <[email protected]>
  458. * BindingTest.cs: add two new tests.
  459. 2006-11-28 Rolf Bjarne Kvinge <[email protected]>
  460. * TrackBar.cs: Changed SizeTest and OrientationTest
  461. to work on MS with both WinXP theme and Win2K theme.
  462. 2006-11-26 Gert Driesen <[email protected]>
  463. * MdiFormTest.cs: Fixed test on (MS) 2.0 profile.
  464. 2006-11-26 Gert Driesen <[email protected]>
  465. * ControlStylesTest.cs: Fixed GetStyle for 2.0 profile.
  466. 2006-11-26 Gert Driesen <[email protected]>
  467. * FormTest.cs: Added test for bug #80052.
  468. 2006-11-25 Gert Driesen <[email protected]>
  469. * MdiFormTest.cs: Added test for bug #80036.
  470. 2006-11-24 Gert Driesen <[email protected]>
  471. * MdiFormTest.cs: Added NotWorking test for Form.Text.
  472. 2006-11-23 Gert Driesen <[email protected]>
  473. * FormTest.cs: Added test for bug #80020.
  474. * MdiFormTest.cs: Fixed typo, added additonal info.
  475. 2006-11-23 Gert Driesen <[email protected]>
  476. * MdiFormTest.cs: Improved Text test to also verify behavior when
  477. Text of MDI child or container is empty. Added NotWorking test for
  478. Text after MDI is maximized. Added comment with existing NotWorking
  479. test for ActiveMdiChild.
  480. 2006-11-23 Gert Driesen <[email protected]>
  481. * ToolBarTest.cs: Added test for bug #79863. Fixed and enabled
  482. ToStringTest.
  483. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  484. * ControlTest.cs: Added tests for #79999.
  485. 2006-11-20 Rolf Bjarne Kvinge <[email protected]>
  486. * MdiFormTest.cs: Added tests for WindowState (mdi
  487. children) and Text (mdi parent with maximized mdi
  488. children).
  489. 2006-11-13 Gert Driesen <[email protected]>
  490. * ControlEventTest.cs: Added tests for Invalidated event.
  491. * TreeNodeCollectionTest.cs: Added IList indexer tests.
  492. 2006-11-12 Gert Driesen <[email protected]>
  493. * TextBoxTest.cs: Added (NotWorking) test for bug #79909.
  494. 2006-11-11 Gert Driesen <[email protected]>
  495. * TreeViewTest.cs: Added (NotWorking) tests for BeforeSelect event.
  496. 2006-11-09 Gert Driesen <[email protected]>
  497. * ListViewEventTest.cs: Added tests for SelectedIndexChanged event.
  498. * UpDownTest.cs: Fixed ToStringTest.
  499. 2006-11-09 Alexander Olk <[email protected]>
  500. * CommonDialogsTest.cs: Added
  501. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  502. * StatusBarPanelTest.cs: Added tests for bug #79842
  503. and tests for default properties.
  504. 2006-11-09 Rolf Bjarne Kvinge <[email protected]>
  505. * TrackBarTest.cs: Added tests for bug #79718.
  506. 2006-11-08 Gert Driesen <[email protected]>
  507. * TextBoxTest.cs: Added test for bug #79851.
  508. 2006-11-07 Gert Driesen <[email protected]>
  509. * TabControlTest.cs: Added test for bug #79847.
  510. 2006-11-04 Chris Toshok <[email protected]>
  511. * ControlTest.cs: enable a bunch more of these on linux, and split
  512. out problematic areas into smaller NotWorking tests.
  513. 2006-11-04 Chris Toshok <[email protected]>
  514. * FormTest.cs: add a few more tests to determine various aspects
  515. of the Close() method.
  516. 2006-11-04 Chris Toshok <[email protected]>
  517. * FormTest.cs: add a test to more accurately test for bug #79155
  518. (make sure an ObjectDisposedException is thrown if you Show() a
  519. Form you just Close()'d).
  520. 2006-11-04 Gert Driesen <[email protected]>
  521. * TreeNodeCollectionTest.cs: Added tests for TreeNodeCollection.
  522. 2006-11-04 Gert Driesen <[email protected]>
  523. * ComboBoxTests.cs: Moved to correct namespace. Added test for bug
  524. #79812. Added (NotWorking) SelectedText tests.
  525. 2006-11-01 Gert Driesen <[email protected]>
  526. * TextBoxTest.cs: Added tests for part of bug #79799.
  527. 2006-11-01 Gert Driesen <[email protected]>
  528. * ControlTest.cs: Fixed build using csc 1.x.
  529. 2006-10-30 Alexander Olk <[email protected]>
  530. * PictureBoxTest.cs: Enable the previously not working
  531. ToStringMethodTest and move the not working Image property
  532. test to its own method.
  533. * UpDownTest.cs: Added
  534. 2006-10-29 Chris Toshok <[email protected]>
  535. * ControlTest.cs: correct namespace and add TopLevelControlTest
  536. for bug #79781.
  537. 2006-10-29 Alexander Olk <[email protected]>
  538. * FormTest.cs: Fix typo.
  539. 2006-10-13 Gert Driesen <[email protected]>
  540. * PropertyGridTest.cs: Enabled previously not-working tests.
  541. 2006-10-13 Gert Driesen <[email protected]>
  542. * PropertyGridTest.cs: Added some tests for PropertyGrid.
  543. 2006-10-13 Andreia Gaita <[email protected]>
  544. * FocusTest.cs: add more test cases for GetNextControl.
  545. see #78650
  546. 2006-10-11 Chris Toshok <[email protected]>
  547. * ToolBarTest.cs: add test for ToolBarButton rectangles.
  548. 2006-10-06 Gert Driesen <[email protected]>
  549. * ListViewCollectionsTest.cs: Added tests for bug #79415.
  550. * ListViewTest.cs: Enabled test for bug #79416.
  551. 2006-10-03 Sebastien Pouliot <[email protected]>
  552. * ContainerControlTest.cs: New. Add a few test cases for
  553. GetContainerControl method.
  554. 2006-10-02 Sebastien Pouliot <[email protected]>
  555. * ButtonTest.cs: Activate tests for ButtonBaseAccessibleObject.
  556. 2006-10-02 Sebastien Pouliot <[email protected]>
  557. * ButtonTest.cs: Added new test cases for ButtonBaseAccessibleObject
  558. as NonWorking (see bug #79552). Fixed line-endings.
  559. 2006-09-22 Sebastien Pouliot <[email protected]>
  560. * SystemInformationTest.cs: Add tests case for MenuFont.
  561. 2006-09-18 Jonathan Pobst <[email protected]>
  562. * EventArgsTest.cs: Add tests for ToolStrip*EventArgs.
  563. 2006-09-13 Jonathan Pobst <[email protected]>
  564. * SplitContainerTests.cs: Added.
  565. 2006-09-11 Gert Driesen <[email protected]>
  566. * ListViewTest.cs: Added test for bug #79076. Added tests for
  567. sorting bug fixes. Added tests for CheckBoxes and MultiSelect (marked
  568. NotWorking).
  569. * ListViewCollectionsTest.cs: Added tests for SelectedItemCollection
  570. and ListViewItemCollection fixes.
  571. 2006-09-01 Carlos Alberto Cortez <[email protected]>
  572. * ComboBoxTest.cs: Add tests for sorting and selection handling.
  573. Deal with a couple of exception mismatches in 2_0.
  574. 2006-08-21 Carlos Alberto Cortez <[email protected]>
  575. * ComboBoxTest.cs: Add tests for CB.ObjectCollection
  576. methods throwing ArgumentNullException.
  577. 2006-08-18 Carlos Alberto Cortez <[email protected]>
  578. * ComboBoxTest.cs: Add tests for adding/modifying null items
  579. in ObjectCollection.
  580. * ListBox.cs: Likewise.
  581. 2006-08-08 Chris Toshok <[email protected]>
  582. * GridTableStylesCollectionTest.cs: make this fixture public so
  583. it's actually included, and add a test for changing the
  584. MappingName of a constituent TableStyle.
  585. 2006-07-30 Carlos Alberto Cortez <[email protected]>
  586. * PrintDialogTest.cs: Added.
  587. 2006-07-21 Matt Hargett ([email protected])
  588. * ControlTest.cs: Added tests for MinimumSize/MaximumSize
  589. 2006-07-20 Carlos Alberto Cortez <[email protected]>
  590. * ListControlTest.cs: Added DataSourceWrongArgumentType method
  591. to test the exception being thrown.
  592. 2006-07-18 Carlos Alberto Cortez <[email protected]>
  593. * ListControlTest.cs: Added.
  594. 2006-07-14 Jonathan Pobst <[email protected]>
  595. * EventArgsTest.cs: Added
  596. 2006-07-10 Chris Toshok <[email protected]>
  597. * DataGridTest.cs: make this class public so it shows up in the
  598. list of fixtures (and its tests get run).
  599. * CurrencyManagerTest.cs: add a test that just spews properties
  600. about the currency manager and the datasource, as well as a test
  601. for the finalType field.
  602. 2006-07-07 Chris Toshok <[email protected]>
  603. * DataGridTableStyleTest.cs: couple more tests.
  604. 2006-07-06 Peter Dennis Bartok <[email protected]>
  605. * ControlTest.cs: Added "LinkLabel with link" test
  606. 2006-06-30 Chris Toshok <[email protected]>
  607. * DataGridTableStyleTest.cs: add a bunch of mirrored tests for the
  608. default DataGridTableStyle.
  609. 2006-06-23 Chris Toshok <[email protected]>
  610. * PropertyManagerTest.cs: new tests regarding the
  611. [Related]PropertyManager class.
  612. 2006-06-19 Peter Dennis Bartok <[email protected]>
  613. * ControlTest.cs: Added tests for enabled state inheritance
  614. 2006-06-19 Chris Toshok <[email protected]>
  615. * CurrencyManagerTest.cs: add some tests for related currency
  616. managers.
  617. * BindingContextTest.cs: add a test for
  618. BindingContext.CollectionChanged -=. Also add a test for passing
  619. null for data_member to BindingContext.Contains.
  620. 2006-06-06 Carlos Alberto Cortez <[email protected]>
  621. * FormTest.cs: Add SetDialogResult, to test Form.DialogResult
  622. setter.
  623. 2006-06-01 Chris Toshok <[email protected]>
  624. * CurrencyManagerTest.cs: add a few tests to see what events are
  625. being emitted in which order from AddNew, CancelCurrentEdit and
  626. EndCurrentEdit.
  627. 2006-05-31 Peter Dennis Bartok <[email protected]>
  628. * LabelTest.cs:
  629. - Added (still unused) fuzzy compare for events
  630. - Disabled event order tests, they are too strict
  631. * ScrollBarTest.cs: Disabled event order tests, are too strict
  632. 2006-05-25 Jackson Harper <[email protected]>
  633. * TreeViewTest.cs: Add a couple of default properties. Put in
  634. correct namespace.
  635. * TabControlTest.cs: Put in correct namespace.
  636. 2006-05-25 Atsushi Enomoto <[email protected]>
  637. * BindingContextTest.cs : added more tests for Item, Contains()
  638. and GetEnumerator().
  639. 2006-05-18 Sebastien Pouliot <[email protected]>
  640. * PaintEventArgsTest.cs: New. Unit tests for PaintEventArgs.
  641. 2006-05-18 Atsushi Enomoto <[email protected]>
  642. Some compat fixes found by make run-test-ondotnet:
  643. * ListBoxTest.cs : they don't throw exceptions.
  644. * RichTextBoxTest.cs,
  645. ScrollBarTest.cs,
  646. ComboBoxTest.cs,
  647. ComboBoxTests.cs : Commented some lines out since they are
  648. environment (especially desktop theme) dependent.
  649. TabControlTest.cs : SetSelectedIndex() was my bad that the test
  650. needed the tab control be drawn to pass the test.
  651. Some tests are env. dependent (as well as others).
  652. 2006-05-16 Miguel de Icaza <[email protected]>
  653. * DataGridTest.cs: Add a test case based on 78420, confirm that
  654. the fix works.
  655. 2006-05-15 Atsushi Enomoto <[email protected]>
  656. * TabControlTest.cs : added test for bug #78395.
  657. 2006-04-16 Gert Driesen <[email protected]>
  658. * TabControlTest.cs: Added test for bug #78121. Marked failing tests
  659. NotWorking. Set eol-style to native.
  660. 2006-04-12 Peter Dennis Bartok <[email protected]>
  661. * ControlTest.cs: Added backcolor tests related to transparency
  662. (bug #78026)
  663. 2006-03-31 Peter Dennis Bartok <[email protected]>
  664. * ControlTest.cs: Ignore Invoke test, it hangs
  665. 2006-02-28 Matt Hargett ([email protected])
  666. * ComboBoxTests.cs: Added
  667. 2006-02-02 Peter Dennis Bartok <[email protected]>
  668. * ControlTest.cs: Added test for layout nesting
  669. * MonthCalendarTest.cs: Fixed typo in class name
  670. 2005-12-01 Jackson Harper <[email protected]>
  671. * TreeNodeTest.cs: TreeNodeTest.cs : Added namespace +
  672. SingleNodeIndexTest.
  673. - Fixed warning CS0219. Patches by Dieter Bremes
  674. 2005-11-12 Pedro Martínez Juliá <[email protected]>
  675. * DataGridViewElementTest.cs DataGridViewBandTest.cs
  676. DataGridViewCellTest.cs DataGridViewAdvancedBorderStyleTest.cs
  677. DataGridViewCellStyleTest.cs DataGridViewRowTest.cs DataGridViewTest.cs:
  678. Add some DataGridView tests.
  679. 2005-11-11 Ankit Jain <[email protected]>
  680. * RichTextBoxTest.cs: Fix typos.
  681. 2005-11-09 Peter Dennis Bartok <[email protected]>
  682. * RichTextBoxTest.cs: Added Find() tests
  683. 2005-11-05 Kornél Pál <[email protected]>
  684. * LabelPropertyTest.cs: Updated product version to 1.1.4322.2032 (1.1 SP1).
  685. 2005-10-18 Jordi Mas i Hernandez <[email protected]>
  686. * ListViewCollectionsTest.cs: Add tests for the ListView Collections
  687. 2005-10-17 Ritvik Mayank <[email protected]>
  688. * TabControlTest.cs : Added test case for TabControl
  689. 2005-10-16 Ritvik Mayank <[email protected]>
  690. * TrackBarTest.cs : Added test case for TrackBar
  691. 2005-10-16 Jordi Mas i Hernandez <[email protected]>
  692. * DataGridBoolColumn.cs: fixes warning
  693. 2005-10-10 Peter Dennis Bartok <[email protected]>
  694. * GenerateControlStyleTest.cs, ControlStyleTest.cs: Flipped
  695. order for want and actual to avoid misleading errors
  696. 2005-10-07 Peter Dennis Bartok <[email protected]>
  697. * GenerateControlStyleTest.cs: Code to auto-generate the
  698. source file ControlStyleTest.cs
  699. * ControlStyleTest.cs: Tests for testing ControlStyles
  700. 2005-09-28 Hisham Mardam Bey <[email protected]>
  701. * Common.cs : Add common things here.
  702. * LabelTest.cs : Remove common declarations to Common.cs
  703. * ScrollBarTest.cs : Remove common declarations to Common.cs
  704. Add more propery range / exception tests
  705. Add more event order tests
  706. Fix Mouse tests.
  707. Add event arg tests.
  708. 2005-09-27 Hisham Mardam Bey <[email protected]>
  709. * LabelTest.cs : Added more event tests (external handlers)
  710. Added event arg checks
  711. Fixed OnPaint tests.
  712. Seperated invalidation tests.
  713. 2005-09-26 Hisham Mardam Bey <[email protected]>
  714. * ScrollBarTest.cs : Add more tests for event firing order
  715. Messages to simulate mouse events
  716. 2005-09-23 Ritvik Mayank <[email protected]>
  717. * ErrorProviderTest.cs : Added test case for ErrorProvider
  718. 2005-09-23 Hisham Mardam Bey <[email protected]>
  719. * LabelTest.cs : Added messages to simulate Key* events.
  720. Key* events have tests now.
  721. 2005-09-22 Hisham Mardam Bey <[email protected]>
  722. * LabelTest.cs : Implement event firing order tests.
  723. * ScrollBarTest.cs : Implement event firing order tests.
  724. 2005-09-22 Jordi Mas i Hernandez <[email protected]>
  725. * MenuTest.cs: Fixes some tests
  726. * MenuItemTest.cs: New unit test
  727. 2005-09-21 Hisham Mardam Bey <[email protected]>
  728. * LabelTest.cs : Several new tests.
  729. * ScrollBarTest.cs : Several new tests.
  730. * bitmaps : added dir containing images for tests.
  731. 2005-09-21 Jordi Mas i Hernandez <[email protected]>
  732. * ListViewItemTest.cs: New unit test
  733. 2005-09-20 Jordi Mas i Hernandez <[email protected]>
  734. * ButtonTest.cs, LabelTest.cs, ControlEventTest.cs, ScrollBarTest.cs,
  735. LabelPropertyTest.cs, ProgressBarTest.cs, StatusBarTest.cs,
  736. ImageListTest.cs, MonthCalendarTest.cs, ControlTest.cs,
  737. ListBoxEventTest.cs, TreeViewTest.cs, TestImageIndexConverter.cs,
  738. ToolBarTest.cs, MenuTest.cs
  739. Remove all the tests that are giving errors. All of them should
  740. be reviewed. Right now having this text throwing 40 errors do not
  741. help at all to do regression testing. Peter has already assigned
  742. a group of controls to every developer that will be tested and
  743. reviewed.
  744. 2005-09-20 Ritvik Mayank <[email protected]>
  745. * PictureBoxTest.cs : Test case for PictureBox
  746. 2005-09-08 Ritvik Mayank <[email protected]>
  747. * MonthCalendarTest.cs : Test case for MonthCalendar
  748. 2005-08-29 Ritvik Mayank <[email protected]>
  749. * ProgressBarTest.cs : Test case for ProgressBar
  750. * ToolBarTest.cs : Test case for ToolBar
  751. * ToolTipTest.cs : Test case for ToolTip
  752. * RichTextBoxTest.cs : Test case for RichTextBox
  753. 2005-08-16 Martin Baulig <[email protected]>
  754. * ControlTest.cs: Renamed namespace `MWF.Test' -> `MWF.MonoTest'
  755. to make it compile.
  756. 2005-08-16 Ritvik Mayank <[email protected]>
  757. * ScrollBarTest.cs, ImageListTest.cs, CheckedListBoxTest.cs, CheckedListBoxEventTest.cs, MenuTest.cs,
  758. ListViewTest.cs: enhancement and cleanup
  759. 2005-08-16 Ritvik Mayank <[email protected]>
  760. * ImageListTest.cs : Test case for ImageList
  761. * RadioButtonTest.cs : Test case for RadioButton
  762. * ScrollBarTest.cs : Test case for ScrollBar
  763. * StatusBatTest.cs : Test case for StatusBar
  764. 2005-08-10 Ritvik Mayank <[email protected]>
  765. * ControlTest.cs : Commented out test for GetChildAtPointSkip (feature not
  766. yet implemented)
  767. 2005-08-08 Jordi Mas i Hernandez <[email protected]>
  768. * ComboBoxTest.cs: new tests for properties, exceptions, and colletions
  769. * ListBoxTest.cs: new tests for properties, exceptions, and colletionss
  770. 2005-08-06 Ritvik Mayank <[email protected]>
  771. * ComboBoxTest.cs, ListBoxTest.cs : Cleanup, added few more tests
  772. 2005-08-05 Ritvik Mayank <[email protected]>
  773. * ButtonTest.cs, ImageListTest.cs, ControlEventTest.cs,
  774. LabelPropertyTest.cs, CheckBoxTest.cs, ListBoxEventTest.cs,
  775. CheckBoxEventTest.cs, CheckedListBoxTest.cs, TextBoxTest.cs,
  776. CheckedListBoxEventTest.cs, FormTest.cs, MenuTest.cs,
  777. FormEventTest.cs, GroupBoxTest.cs, ListViewTest.cs,
  778. ListViewEventTest.cs :
  779. Cleanup, Ignored tests which need manual intervention,
  780. work still in progress.
  781. 2005-08-05 Jordi Mas i Hernandez <[email protected]>
  782. * DataGridTextBoxColumnTest.cs: test fixes and enhancements
  783. * GridTableStylesCollectionTest.cs: test fixes and enhancements
  784. * DataGridTest.cs: test fixes and enhancements
  785. * DataGridCellTest.cs: New unit test
  786. * GridColumnStylesCollectionTest.cs: test fixes and enhancements
  787. * DataGridTableStyleTest.cs: test fixes and enhancements
  788. 2005-08-04 Peter Dennis Bartok <[email protected]>
  789. * ControlTest.cs: Cleanup, fixed commented out tests with syntax
  790. errors, streamlined a few tests, added full tab order test, still
  791. work in progress
  792. 2005-08-02 Ritvik Mayank <[email protected]>
  793. * FormTest.cs : Test case for Form
  794. * GropBoxTest : Test case for GroupBox
  795. * MenuTest.cs : Test case for Menu
  796. * ImageListTest.cs : Test case for ImageList
  797. 2005-07-26 Ritvik Mayank <[email protected]>
  798. * ListViewTest.cs : Test case for ListView
  799. * ListViewEventTest.cs : Test case for ListView events
  800. * ComboBoxTest.cs : Test case for ComboBox
  801. * FormEventTest.cs : Test case for Form events
  802. 2005-07-12 Ritvik Mayank <[email protected]>
  803. * CheckBoxTest.cs : Test case for CheckBox
  804. * CheckBoxEventTest.cs : Test case for CheckBox events
  805. * CheckedListBoxTest.cs : Test case for CheckedListBox
  806. * CheckedListBoxEventTest.cs : Test case for CheckedListBox events
  807. 2005-07-05 Jordi Mas i Hernandez <[email protected]>
  808. * DataGridTextBoxColumnTest.cs: Test case
  809. * GridTableStylesCollectionTest.cs: Test case
  810. * DataGridTest.cs: Test case
  811. * GridColumnStylesCollectionTest.cs: Test case
  812. * DataGridTableStyleTest.cs: Test case
  813. 2005-07-04 Ritvik Mayank <[email protected]>
  814. * ListBoxTest.cs : Test Cases for ListBox Properties and Methods
  815. * ListBoxEventTest.cs : Test Cases for ListBox Events
  816. 2005-06-13 Ritvik Mayank <[email protected]>
  817. * TextBoxTest.cs : Test Cases for TextBox
  818. * BUttonTest.cs : Test Cases for Buttons
  819. 2005-05-11 Ritvik Mayank <[email protected]>
  820. * ControlEventTest.cs : Test Cases for Events
  821. 2005-05-02 Ritvik Mayank <[email protected]>
  822. * ControlTest.cs : Minor modifications
  823. 2005-05-02 Ritvik Mayank <[email protected]>
  824. * ControlTest.cs : Test for Control
  825. 2005-04-25 Ritvik Mayank <[email protected]>
  826. * LabelPropertyTest.cs : Test for Label
  827. 2004-11-29 Marek Safar <[email protected]>
  828. * TreeViewTest.cs : Test for TreeView
  829. * TreeNodeTest.cs : Test for TreeNode
  830. 2004-11-29 Ravindra <[email protected]>
  831. * ImageIndexConverter.cs : Test for ImageIndexConversion.