ChangeLog 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  2. * DataGridTest.cs: fixed a test and added a commented out one that works
  3. fine in mono but throws nullref with MS.
  4. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  5. * DataGridTest.cs: more tests that add a TemplateColumn.
  6. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  7. * EditCommandColumnTest.cs: added a test here for datagrid, as this was
  8. the file whose test failed because the id of the datagrid generated
  9. table.
  10. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  11. * FontUnitCas.cs: method name change in FontUnitTest.
  12. * FontUnitTest.cs: splitted tests, enabled the "NotWorking" ones and
  13. added tests for FontSize names beginning with x and containing a dash.
  14. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  15. * ListControlTest.cs: new tests for SelectedValue, SelectedIndex and
  16. DataBinding.
  17. 2005-09-24 Gonzalo Paniagua Javier <[email protected]>
  18. * DataGridTest.cs:
  19. * DataListTest.cs: OnItemCommand is raised always in OnBubbleEvent.
  20. 2005-09-23 Sebastien Pouliot <[email protected]>
  21. * LoginTest.cs: Make OnBubbleEvent_Authenticated_OnAuthenticate test
  22. case "work" on both MS and Mono.
  23. * UnitTest.cs: IncorrectConstructor9 was fixed (in 2.0 RC) to throw
  24. the FormatException (just like earlier fx did).
  25. 2005-09-23 Sebastien Pouliot <[email protected]>
  26. * LabelCas.cs, LinkButtonCas.cs, ListBoxCas.cs, ListControlCas.cs,
  27. ListItemCas.cs, ListItemCollectionCas.cs, LiteralCas.cs, LoginCas.cs,
  28. LoginNameCas.cs, LoginStatusCas.cs, MonthChangedEventArgsCas.cs,
  29. PagedDataSourceCas.cs, PanelCas.cs, RadioButtonCas.cs,
  30. RadioButtonListCas.cs, RangeValidatorCas.cs,
  31. RegularExpressionValidatorCas.cs, RepeaterCas.cs, RepeatInfoCas.cs,
  32. RoleGroupCas.cs, RoleGroupCollectionCas.cs,
  33. SelectedDatesCollectionCas.cs, StyleCas.cs, TableCas.cs,
  34. TableCellCas.cs, TableFooterRowCas.cs, TableHeaderCellCas.cs,
  35. TableHeaderRowCas.cs, TableItemStyleCas.cs, TableRowCas.cs,
  36. TableSectionStyleCas.cs, TableStyleCas.cs, TargetConverterCas.cs,
  37. TextBoxCas.cs, TreeViewCas.cs, UnitCas.cs, UnitConverterCas.cs,
  38. ValidatedControlConverterCas.cs, ValidationSummaryCas.cs,
  39. WebColorConverterCas.cs, WebControlCas.cs, XmlCas.cs,
  40. XmlDataSourceCas.cs: New CAS unit tests - checks for LinkDemands and
  41. re-execute the "classic" unit tests under the most retricted security
  42. permissions possible.
  43. 2005-09-23 Sebastien Pouliot <[email protected]>
  44. * LinkButtonTest.cs: Fixed fixture name (Text -> Test).
  45. * ListItemTest.cs: Fixed header.
  46. * LoginTest.cs: Changed [Ignore] to [Category ("NotDotNet")] on
  47. OnBubbleEvent_Authenticated_OnAuthenticate () test case.
  48. * PagedDataSourceTest.cs: Added missing [Test] to
  49. TestEnumerators_NoPaging test case.
  50. * RadioButtonListTest.cs: Fixed header.
  51. * RepeatInfoTest.cs: Add missing [Test] on DefaultValues test case.
  52. * UnitConverterTest.cs: Fixed test cases (commited bu never executed)
  53. before including it in the suite.
  54. * ValidatorTest.cs: Fixed header.
  55. * WebColorConverterTest.cs: Fixed header.
  56. 2005-09-21 Sebastien Pouliot <[email protected]>
  57. * AdCreatedEventArgsCas.cs, BaseCompareValidatorCas.cs,
  58. BaseDataBoundControlCas.cs, BaseDataListCas.cs, BaseValidatorCas.cs,
  59. BoundColumnCas.cs, ButtonColumnCas.cs, CalandarCas.cs,
  60. CalendarDayCas.cs, CheckBoxCas.cs, CheckBoxListCas.cs,
  61. CompareValidatorCas.cs, CompositeControlCas.cs, CustomValidatorCas.cs,
  62. DataBoundControlCas.cs, DataGridCas.cs, DataGridColumnCas.cs,
  63. DataGridItemCas.cs, DataGridItemCollectionCas.cs,
  64. DataGridPagerStyleCas.cs, DataKeyCollectionCas.cs, DataListItemCas.cs,
  65. DataListItemCollectionCas.cs, EditCommandColumnCas.cs, FontInfoCas.cs,
  66. FontNamesConverterCas.cs, FontUnitCas.cs, FormViewCas.cs,
  67. HyperLinkCas.cs, HyperLinkColumnCas.cs, ImageButtonCas.cs,
  68. ImageCas.cs: New CAS unit tests - checks for LinkDemands and
  69. re-execute the "classic" unit tests under the most retricted security
  70. permissions possible.
  71. 2005-09-20 Gonzalo Paniagua Javier <[email protected]>
  72. * DataGridTest.cs: added data binding tests.
  73. * BaseDataListTest.cs: it's DataKeys (arraylist) what gets to the
  74. viewstate, not the DataKeyCollection.
  75. 2005-09-20 Sebastien Pouliot <[email protected]>
  76. * AdCreatedEventArgsTest.cs, BaseCompareValidatorTest.cs,
  77. CompositeControlTest.cs, DataListTest.cs, DropDownListTest.cs,
  78. EditCommandColumnTest.cs, FontNamesConverterTest.cs, FormViewTest.cs,
  79. ListControlTest.cs, MonthChangedEventArgsTest.cs,
  80. RadioButtonListTest.cs, StyleTest.cs, TableCellTest.cs,
  81. TextBoxTest.cs, TreeViewTest.cs, ValidatedControlConverterTest.cs:
  82. Fixed tests results under 2.0 Release Candidate (for NET_2_0).
  83. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  84. * DataGridTest.cs: fix expected/actual order. Added test for HeaderText
  85. and empty ArrayList.
  86. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  87. * TableCellTest.cs: TableCell does not get an automatic ID.
  88. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  89. * TableStyleTest.cs: added test to check that GridLines is correctly
  90. restored in LoadViewState.
  91. 2005-09-13 Gonzalo Paniagua Javier <[email protected]>
  92. * TableCellTest.cs: added new test cases for bug #76078.
  93. 2005-09-09 Gonzalo Paniagua Javier <[email protected]>
  94. * ListItemTest.cs: tests for ListItem.
  95. * RadioButtonListTest.cs: more test for load/raise.
  96. 2005-09-09 Chris Toshok <[email protected]>
  97. * StyleTest.cs (FontInfo_Empty): test to see if changes to
  98. Style.Font cause changes in the style's empty status.
  99. 2005-09-07 Chris Toshok <[email protected]>
  100. * CalendarTest.cs (TestSelectedColorDefault): we need to split up
  101. the color tests since they're rendered in different orders by
  102. ms/us.
  103. 2005-09-07 Chris Toshok <[email protected]>
  104. * ListControlTest.cs: add tests for the ControlState.
  105. 2005-09-05 Chris Toshok <[email protected]>
  106. * FormViewTest.cs: new tests.
  107. 2005-09-05 Chris Toshok <[email protected]>
  108. * DataBoundControlTest.cs: new tests.
  109. * BaseDataBoundControlTest.cs: new tests.
  110. 2005-09-01 Chris Toshok <[email protected]>
  111. * ListControlTest.cs (DefaultProperties): add tests for TagKey,
  112. Text, and AppendDataBoundItems.
  113. (ViewStateContents): add checks for Text and AppendDataBoundItems.
  114. 2005-09-01 Raja R Harinath <[email protected]>
  115. * CalendarTest.cs: Remove duplicate using-declarations.
  116. * XmlDataSourceTest.cs: Protect with NET_2_0 guard.
  117. * RepeaterTest.cs (Poker.GetSelectArguments): Likewise.
  118. (Poker.DoCreateDataSourceSelectArguments): Likewise.
  119. (Repeater_DefaultsSelectArguments): Likewise.
  120. 2005-08-31 Chris Toshok <[email protected]>
  121. * TreeViewTest.cs: beginnings of new tests.
  122. * RepeaterTest.cs: same.
  123. * XmlDataSourceTest.cs: same.
  124. 2005-08-27 Chris Toshok <[email protected]>
  125. * TextBoxTest.cs: add 2.0 test to show that validation properties
  126. have no effect on downlevel rendering.
  127. 2005-08-26 Chris Toshok <[email protected]>
  128. * TextBoxTest.cs: add tests for the 2.0 validation properties, and
  129. to make sure they're getting saved to the viewstate.
  130. 2005-08-26 Chris Toshok <[email protected]>
  131. * FontUnitTest.cs: Add tests for the two 2.0 constructors, and the
  132. 2.0 ToString(IFormatProvider) method.
  133. * UnitTest.cs: Add tests for the 2.0 ToString(IFormatProvider)
  134. method.
  135. 2005-08-26 Sebastien Pouliot <[email protected]>
  136. * TableStyleTest.cs: New test cases for 2.0.
  137. 2005-08-25 Sebastien Pouliot <[email protected]>
  138. * CheckBoxListTest.cs: Use Ben's CleanHtmlTextWriter to compare
  139. rendered output. Re-ordered the expected value to match. Rendering
  140. tests now pass on Mono 1.x|2.0 profile and MS 1.x.
  141. * DropDownListTest.cs: (Properties) we have the same 2.0 failure on
  142. both Mono and MS runtime, maybe it's a feature ;-)
  143. 2005-08-25 Chris Toshok <[email protected]>
  144. * CalendarTest.cs: add viewstate tests for Caption/CaptionAlign
  145. (2.0).
  146. 2005-08-25 Sebastien Pouliot <[email protected]>
  147. * HyperLinkTest.cs: Fixed the expected output rendering for 2.0.
  148. 2005-08-25 Peter Dennis Bartok <[email protected]>
  149. * StyleTest.cs: Added tests for CssRegisteredStyle
  150. 2005-08-25 Sebastien Pouliot <[email protected]>
  151. * StyleTest.cs: Added test for IsStyleEmpty(null).
  152. 2005-08-24 Chris Toshok <[email protected]>
  153. * ValidationSummaryTest.cs (ValidationSummary_ValidationGroup):
  154. add tests for ValidationGroup, making sure it's stored in the
  155. ViewState.
  156. 2005-08-24 Sebastien Pouliot <[email protected]>
  157. * RoleGroupTest.cs: New (2.0). Unit tests for RoleGroup.
  158. * RoleGroupCollectionTest.cs: New (2.0). Unit tests for
  159. RoleGroupCollection.
  160. 2005-08-23 Chris Toshok <[email protected]>
  161. * RepeatInfoTest.cs (RenderRepeater_BaseControl): the 2.0 ReatInfo
  162. class does things a little differently.
  163. 2005-08-22 Chris Toshok <[email protected]>
  164. * ListControlTest.cs: #if NET_2_0 some of the asserts whose values
  165. are different in 2.0.
  166. * ValidationSummaryTest.cs: same.
  167. * XmlTest.cs: same.
  168. * ListBoxTest.cs: same.
  169. * CheckBoxTest.cs: same.
  170. * UnitTest.cs: same.
  171. * TextBoxTest.cs: same.
  172. * CustomValidatorTest.cs: same.
  173. * DataGridTest.cs: same.
  174. * BaseCompareValidatorTest.cs: remove ko-KR, since my laptop
  175. presently can't find it, and we already have another ymd date
  176. element order.
  177. 2005-08-22 Chris Toshok <[email protected]>
  178. * RepeatInfoTest.auto.cs: regenerate.
  179. * RepeatInfoTest.auto.2.0.cs: generate using .Net 2.0.
  180. * RepeatInfoTest.gen.cs: add wrapper #ifdefs for the 1.x/2.0 cases
  181. - we need both.
  182. 2005-08-22 Chris Toshok <[email protected]>
  183. * BaseCompareValidatorTest.cs: fix the tests that change behavior
  184. between 1.x and 2.0.
  185. 2005-08-22 Chris Toshok <[email protected]>
  186. * LinkButtonTest.cs: add validation group tests.
  187. 2005-08-22 Chris Toshok <[email protected]>
  188. * ImageButtonTest.cs: add NET_2_0 validation tests.
  189. 2005-08-22 Chris Toshok <[email protected]>
  190. * CheckBoxTest.cs: add NET_2_0 validation tests.
  191. 2005-08-22 Chris Toshok <[email protected]>
  192. * ButtonTest.cs (Button_DefaultValues): add NET_2_0 test for
  193. ValidationGroup.
  194. (Button_ViewState): same.
  195. 2005-08-22 Sebastien Pouliot <[email protected]>
  196. * LoginNameTest.cs: New. Unit tests for LoginName control (2.0).
  197. * LoginStatusTest.cs: New. Unit tests for LoginStatus control (2.0).
  198. 2005-08-19 Sebastien Pouliot <[email protected]>
  199. * TableCellTest.cs: Add test cases for AssociatedHeaderCellID (2.0).
  200. 2005-08-18 Sebastien Pouliot <[email protected]>
  201. * BaseDataListTest.cs: Added test cases for new properties, methods
  202. and events defined in 2.0.
  203. * LoginTest.cs: Added test cases for On* methods.
  204. 2005-08-17 Chris Toshok <[email protected]>
  205. * CompositeControlTest.cs: put it in the MonoTests. namespace so
  206. it shows up in the right place in the nunit gui.
  207. 2005-08-16 Sebastien Pouliot <[email protected]>
  208. * DataListTest.cs: Fixed ViewState test to work on both 1.x and 2.0.
  209. Added tests for Load|SaveControlState (2.0). Added basic tests for
  210. SelectedValue property (2.0).
  211. * LoginTest.cs: Added test cases to check for null (removal) on all
  212. string properties, added checks for all enums properties. Also added
  213. test case for SaveViewState.
  214. 2005-08-15 Sebastien Pouliot <[email protected]>
  215. * TableHeaderRowTest.cs: New. Reuse TableRowTest test cases to test
  216. TableHeaderRow class (2.0).
  217. * TableFooterRowTest.cs: New. Reuse TableRowTest test cases to test
  218. TableFooterRow class (2.0).
  219. * TableRowTest.cs: Added test cases for new (2.0) TableSection
  220. property. Reworked the tests to allow easier reuse of them by the
  221. TableHeaderRow and TableFooterRow classes.
  222. 2005-08-14 Sebastien Pouliot <[email protected]>
  223. * LoginTest.cs: New. Unit tests to test default values for Login.
  224. * TableHeaderCellTest.cs: Add tests for CategoryText and Scope
  225. properties (new in 2.0).
  226. * TableSectionStyleTest.cs: New. Unit tests for TableSectionStyle.
  227. Note that this new 2.0 class seems broken as it is not complete (MS).
  228. 2005-08-12 Chris Toshok <[email protected]>
  229. * CompositeControlTest.cs: a couple of tests for CompositeControl.
  230. 2005-08-09 Sebastien Pouliot <[email protected]>
  231. * BaseDataListTest.cs: Added tests for OnDataBinding.
  232. * DataLitItemTest.cs: Added more useful tests for rendering items,
  233. including a test when two tables are present and extractRows is true.
  234. Added tests for IDataItemContainer (2.0).
  235. 2005-08-08 Jackson Harper <[email protected]>
  236. * PagedDataSourceTest.cs: Tests for creating enumerators when
  237. paging is not enabled.
  238. 2005-08-08 Sebastien Pouliot <[email protected]>
  239. * HyperLinkTest.cs: Updated comments. Resolve doesn't work when doing
  240. unit tests (probably because it requires a Page, or something else
  241. that can be used as the base url for the application).
  242. 2005-08-03 Peter Dennis Bartok <[email protected]>
  243. * EditCommandColumnTest.cs: Updated; InitializeCell() passes except
  244. for the missing footer; InitializeCellEdit() has a problem with
  245. the name given to the TextBox controls
  246. 2005-08-05 Jackson Harper <[email protected]>
  247. * PagedDataSourceTest.cs: Tests for PageCount.
  248. 2005-08-04 Ben Maurer <[email protected]>
  249. * CalendarTest.cs: Test based on an msdn example. Again, I (heart)
  250. anonymous methods.
  251. 2005-08-04 Dick Porter <[email protected]>
  252. * DataGridColumnTest.cs: Tests for DataGridColumn
  253. 2005-08-03 Ben Maurer <[email protected]>
  254. * RepeatInfoTest.cs: Test for copying from base control
  255. * WebControlTest.cs: Issue I found while doing repeatinfo
  256. * LabelTest.cs: New tests.
  257. * PanelTest.cs: New tests
  258. 2005-08-03 Peter Dennis Bartok <[email protected]>
  259. * EditCommandColumnTest.cs: Enable tests
  260. 2005-08-03 Peter Dennis Bartok <[email protected]>
  261. * DataGridPagerStyleTest.cs: Added testcase
  262. 2005-08-03 Jordi Mas i Hernandez <[email protected]>
  263. * CalendarTest.cs: Trackview states
  264. 2005-08-02 Jackson Harper <[email protected]>
  265. * BoundColumnTest.cs: Start of tests for the BoundColumn class.
  266. 2005-08-02 Jordi Mas i Hernandez <[email protected]>
  267. * RadioButtonListTest.cs: test unit
  268. 2005-08-01 Jackson Harper <[email protected]>
  269. * TableStyleTest.cs: Check that items copied set the styles flags.
  270. 2005-08-01 Jackson Harper <[email protected]>
  271. * PagedDataSourceTest.cs: Test the enumerators a little.
  272. 2005-07-30 Chris Toshok <[email protected]>
  273. * HyperLinkColumnTest.cs: add some tests for how the column
  274. initializes a TableCell.
  275. 2005-07-30 Ben Maurer <[email protected]>
  276. * RepeatInfoTest.auto.cs: Regen.
  277. * RepeatInfoTest.gen.cs: Autogenerate tests for 0 items
  278. 2005-07-29 Chris Toshok <[email protected]>
  279. * BaseCompareValidatorTest.cs (CanConvert): disable B9, until we
  280. figure out a culture independent way to do it.
  281. (Convert): same with C17/C18.
  282. (MiscPropertiesAndMethods): test CutoffYear, GetFullYear, and
  283. GetDateElementOrder.
  284. 2005-07-27 Peter Dennis Bartok <[email protected]>
  285. * StyleTest.cs: Added font-related tests to check for special
  286. Name/Names behaviour
  287. 2005-07-29 Chris Toshok <[email protected]>
  288. * BaseCompareValidatorTest.cs: use DateTime to generate the
  289. strings for our date tests, since they're culture specific.
  290. 2005-07-29 Dick Porter <[email protected]>
  291. * RadioButtonTest.cs: Added tests for RadioButton
  292. 2005-07-29 Jordi Mas i Hernandez <[email protected]>
  293. * SelectedDatesCollectionTest.cs: new unit test
  294. * CalendarDayTest.cs: new unit test
  295. * CalendarTest.cs: more tests for calendar control
  296. 2005-07-28 Jackson Harper <[email protected]>
  297. * EditCommandColumnTest.cs: Make the DataGridTest nested so my
  298. top secret DataGrid tests will still compile.
  299. 2005-07-27 Peter Dennis Bartok <[email protected]>
  300. * EditCommandColumnTest.cs: Added tests; marked some as NotWorking
  301. until PagedDataSource is not throwing NotImpl
  302. 2005-07-27 Peter Dennis Bartok <[email protected]>
  303. * CustomValidatorTest.cs: Added tests
  304. 2005-07-27 Peter Dennis Bartok <[email protected]>
  305. * DataGridPagerStyleTest.cs: Added tests
  306. 2005-07-26 Peter Dennis Bartok <[email protected]>
  307. * DataGridItemTest.cs: Added tests
  308. 2005-07-26 Peter Dennis Bartok <[email protected]>
  309. * DataGridItemCollectionTest.cs: Added tests
  310. 2005-07-26 Ben Maurer <[email protected]>
  311. * RepeatInfoTest.cs: Remove tests that are contained below
  312. * RepeatInfoTest.auto.cs: Generated tests.
  313. * RepeatInfoTest.gen.cs: A test generator for repeatinfo
  314. 2005-07-25 Peter Dennis Bartok <[email protected]>
  315. * StyleTest.cs: Refined tests
  316. 2005-07-25 Jackson Harper <[email protected]>
  317. * DataGridTest.cs: More tests for the pager.
  318. 2005-07-22 Jackson Harper <[email protected]>
  319. * DataGridTest.cs: Basic test for InitializePager.
  320. 2005-07-22 Sebastien Pouliot <[email protected]>
  321. * HyperLinkTest.cs: New. (very basic) unit tests for HyperLink.
  322. 2005-07-21 Jackson Harper <[email protected]>
  323. * DataGridTest.cs: Test the order the events are invoked in when
  324. creating the control hierarchy.
  325. 2005-07-21 Sebastien Pouliot <[email protected]>
  326. * BaseDataList.cs: Replace IList test with IEnumerable test.
  327. * RepeatInfoTest.cs: Ignore the test about the baseControl / NRE.
  328. * TableCellTest.cs: Added tests for AddParsedSubObject versus the Text
  329. property (and LiteralControl).
  330. 2005-07-21 Peter Dennis Bartok <[email protected]>
  331. * CustomValidatorTest.cs: Added
  332. 2005-07-21 Peter Dennis Bartok <[email protected]>
  333. * RangeValidatorTest.cs: More test cases
  334. 2005-07-21 Sebastien Pouliot <[email protected]>
  335. * RepeatInfoTest.cs: Added test for RepeatColumn is 0.
  336. * TableRowTest.cs: Added style rendering tests (for my sanity).
  337. 2005-07-21 Jackson Harper <[email protected]>
  338. * PagedDataSourceTest.cs: Test to see what happens when we get a
  339. non ITypedList.
  340. 2005-07-21 Duncan Mak <[email protected]>
  341. * HyperLinkColumnTest.cs: Added new test for HyperLinkColumn.
  342. 2005-07-20 Peter Dennis Bartok <[email protected]>
  343. * DropDownListTest.cs: Added [ExpectedException] for double select
  344. test
  345. 2005-07-20 Ben Maurer <[email protected]>
  346. * DropDownListTest.cs (InitialSelectionMade): Add a test for a
  347. regression that seems to be caused by some change to
  348. ListItemCollection. Add this file to sources as all tests other
  349. than this pass using the old impl of ddl except for this, which is
  350. a regression.
  351. 2005-07-20 Sebastien Pouliot <[email protected]>
  352. * RepeatInfoTest.cs: More unit tests for arguments checks, default
  353. values, baseControl (not figured out yet) and OuterTableImplied.
  354. 2005-07-20 Jackson Harper <[email protected]>
  355. 2005-07-20 Jackson Harper <[email protected]>
  356. * DataGridTest.cs: Make sure we get back a proper columns
  357. collection.
  358. 2005-07-20 Jackson Harper <[email protected]>
  359. * DataGridTest.cs: The columns collection cached from the
  360. CreateColumnSet is stored in the view state.
  361. 2005-07-20 Sebastien Pouliot <[email protected]>
  362. * BaseDataListTest.cs: Added more tests ported from DataGridTest.
  363. * DataListTest.cs: Added more tests ported from DataGridTest.
  364. 2005-07-20 Peter Dennis Bartok <[email protected]>
  365. * ValidationSummaryTest.cs: Added rendering tests
  366. 2005-07-20 Jackson Harper <[email protected]>
  367. * DataGridTest.cs: Test generating column names with/without
  368. enabling useDataSource.
  369. 2005-07-20 Sebastien Pouliot <[email protected]>
  370. * DataListTest.cs: Add viewstate test.
  371. 2005-07-20 Jackson Harper <[email protected]>
  372. * DataGridTest.cs: Check the properties of newly created
  373. BoundColumns.
  374. 2005-07-20 Sebastien Pouliot <[email protected]>
  375. * BaseDataListTest.cs: Add render tests (all empty).
  376. * DataListTest.cs: Added Controls vs Items test.
  377. * WebControlTest.cs: Added new (passing) tests.
  378. 2005-07-19 Jackson Harper <[email protected]>
  379. * PagedDataSource.cs: New unit test for GetItemProperties.
  380. 2005-07-19 Jackson Harper <[email protected]>
  381. * DataGridTest.cs: New tests for creating column sets.
  382. 2005-07-19 Sebastien Pouliot <[email protected]>
  383. * DataListTest.cs: Add more tests for IRepeatInfoUser.
  384. * RepeatInfoTest.cs: New. Unit test for RepeatInfo (not exactly what
  385. I had expected...).
  386. 2005-07-19 Jackson Harper <[email protected]>
  387. * CheckBoxListTest.cs: New tests for FindControl.
  388. 2005-07-19 Jackson Harper <[email protected]>
  389. * DataGridTest.cs: New test for viewstate saving.
  390. 2005-07-19 Chris Toshok <[email protected]>
  391. * BaseValidatorTest.cs: use the right call (SetValidationTextBox)
  392. in ValidatorTest.
  393. 2005-07-19 Peter Dennis Bartok <[email protected]>
  394. * DropDownListTest.cs: Testcases added
  395. * RangeValidatorTest.cs: Added
  396. * ValidatedControlConverterTest.cs: Added
  397. * ValidationSummaryTest.cs: Added
  398. 2005-07-19 Chris Toshok <[email protected]>
  399. * BaseCompareValidatorTest.cs: add date tests.
  400. 2005-07-19 Jackson Harper <[email protected]>
  401. * DataGridTest.cs: Bubble tests for Page command. Tests for bad
  402. Page command bubble event args.
  403. 2005-07-19 Jackson Harper <[email protected]>
  404. * DataGridTest.cs: Select can also be bubbled.
  405. 2005-07-19 Jackson Harper <[email protected]>
  406. * DataGridTest.cs: Tests for the BubbleEvent.
  407. 2005-07-19 Jackson Harper <[email protected]>
  408. * DataGridTest.cs: New tests. Just does properties and events for
  409. the most part.
  410. 2005-07-18 Chris Toshok <[email protected]>
  411. * BaseCompareValidatorTest.cs: note the lack of Date tests, and
  412. add null tests.
  413. 2005-07-18 Chris Toshok <[email protected]>
  414. * BaseCompareValidatorTest.cs: new tests.
  415. 2005-07-19 Ben Maurer <[email protected]>
  416. * UnitConverterTest.cs: New tests
  417. 2005-07-18 Chris Toshok <[email protected]>
  418. * CompareValidatorTest.cs (CompareValidator_ValueToCompareTest,
  419. CompareValidator_ControlToCompareTest): new methods.
  420. * ValidatorTest.cs: add AddTextBox method.
  421. 2005-07-18 Chris Toshok <[email protected]>
  422. * RegularExpressionValidatorTest.cs: add a simple validation test.
  423. * ValidatorTest.cs: add a base class for validator tests, that
  424. enables a little scaffolding for faking out the test.
  425. 2005-07-18 Chris Toshok <[email protected]>
  426. * CompareValidatorTest.cs: new tests.
  427. 2005-07-18 Chris Toshok <[email protected]>
  428. * RegularExpressionValidatorTest.cs: new test.
  429. 2005-07-18 Sebastien Pouliot <[email protected]>
  430. * DataListTest.cs: Fix tests for 1.1 which keeps more stuff into it's
  431. ViewState.
  432. 2005-07-15 Peter Dennis Bartok <[email protected]>
  433. * DropDownListTest.cs: Testcases added
  434. 2005-07-15 Jackson Harper <[email protected]>
  435. * CheckBoxListTest.cs: New tests for FindControl.
  436. 2005-07-15 Jackson Harper <[email protected]>
  437. * WebControlTest.cs: New test to make sure NamingContainers are
  438. honoured when rendering client ids.
  439. 2005-07-15 Jackson Harper <[email protected]>
  440. * CheckBoxListTest.cs: More tests for the IRepeatInfoUser stuff
  441. and for rendering.
  442. 2005-07-15 Sebastien Pouliot <[email protected]>
  443. * BaseDataListTest.cs: New. Unit tests for abstract BaseDataList.
  444. * DataKeyCollectionTest.cs: New. Unit tests for DataKeyCollection.
  445. * DataListItemCollectionTest.cs: New. Unit tests for
  446. DataListItemCollection.
  447. * DataListItemTest.cs: New. Unit tests for DataListItem (incomplete).
  448. * DataListTest.cs: New. Unit tests for DataList (incomplete).
  449. 2005-07-14 Jackson Harper <[email protected]>
  450. * CheckBoxListTest.cs: Rendering tests.
  451. 2005-07-14 Jackson Harper <[email protected]>
  452. * CheckBoxListTest.cs: Fix the exception types thrown for bad
  453. enums. Mark as NotWorking as this doesn't work with the old
  454. CheckBoxList class anymore.
  455. 2005-07-14 Jackson Harper <[email protected]>
  456. * CheckBoxListTest.cs: Add some rendering tests. These aren't
  457. fully working yet so they are in the NotWorking category.
  458. 2005-07-14 Jackson Harper <[email protected]>
  459. * CheckBoxListTest.cs: This has the potential to be a beautiful
  460. test.
  461. 2005-07-14 Peter Dennis Bartok <[email protected]>
  462. * WebColorConverter.cs: Testcases added
  463. 2005-07-14 Jackson Harper <[email protected]>
  464. * ListControlTest.cs: New test for the viewstate and item
  465. selection.
  466. 2005-07-14 Dick Porter <[email protected]>
  467. * CheckBoxTest.cs: Added enum checks
  468. 2005-07-14 Peter Dennis Bartok <[email protected]>
  469. * TargetConverterTest.cs: Testcases added
  470. 2005-07-14 Duncan Mak <[email protected]>
  471. * PagedDataSourceTest.cs: Added testcases.
  472. (PageCountTest, CountTest, IsLastPageTest): Needs more work.
  473. 2005-07-13 Peter Dennis Bartok <[email protected]>
  474. * FontNamesConverterTest.cs: Testcases added
  475. 2005-07-13 Peter Dennis Bartok <[email protected]>
  476. * ListItemCollectionTest.cs: Added
  477. * ListBoxTest.cs: Marked test as not working since it dependes on
  478. ListControl making a call to an obsolete internal method
  479. 2005-07-13 Jackson Harper <[email protected]>
  480. * ListControlTest.cs: New tests for the ListControl.
  481. 2005-07-13 Jackson Harper <[email protected]>
  482. * ListBoxTest.cs: Exception is thrown (by ListControl). Dont run
  483. the BadBorderStyle test as this fails in ListControls.
  484. 2005-07-13 Sebastien Pouliot <[email protected]>
  485. * ImageTest.cs: Added tests for DescriptionUrl in 1.1 profile as this
  486. property was added in Fx 1.1 SP1.
  487. * StyleTest.cs: Added more tests for CopyFrom to test it's behavior,
  488. e.g. it doesn't reset itself nor remove it's properties if they're
  489. not part of the copied Style instance.
  490. * TableTest.cs: Adjusted values so we're not testing a 100% match with
  491. MS lines/indentations.
  492. * TableRowTest.cs: Use Ben's trick on StreamWriter (\r\n). Adjusted
  493. values so we're not testing a 100% match with MS lines/indentations.
  494. * WebControlTest.cs: Added tests to remove attributes and style before
  495. rendering. Empty style properties shouldn't be rendered.
  496. 2005-07-13 Dick Porter <[email protected]>
  497. * CheckBoxTest.cs: Added tests for CheckBox - currently all
  498. passing on mono and ms runtimes.
  499. 2005-07-12 Sebastien Pouliot <[email protected]>
  500. * WebControlTest.cs: Added another test for RenderBeginTag, this time
  501. using an attribute (renamed old test as it was for style attributes).
  502. 2005-07-12 Peter Dennis Bartok <[email protected]>
  503. * WebControlTest.cs: Added test for loading/saving of state. Switched
  504. to use Sebastiens GetWriter method
  505. 2005-07-12 Jackson Harper <[email protected]>
  506. * ListBoxTest.cs: Some simple tests for the ListBox control.
  507. 2005-07-12 Sebastien Pouliot <[email protected]>
  508. * TableTest.cs: Use Ben's trick on StreamWriter.
  509. * WebControlTest.cs: Added tests for RenderBeginTag.
  510. 2005-07-12 Sebastien Pouliot <[email protected]>
  511. * TableCellTest.cs: New. Unit tests for TableCell.
  512. * TableItemStyleTest.cs: New. Unit tests for TableItemStyle.
  513. * TableHeaderCellTest.cs: New. Unit tests for TableHeaderCell.
  514. * TableRowTest.cs: New. Unit tests for TableRow.
  515. * TableStyleTest.cs: New. Unit tests for TableStyle.
  516. * TableTest.cs: New. Unit tests for Table.
  517. 2005-07-12 Miguel de Icaza <[email protected]>
  518. * UnitTest.cs: Update test suite.
  519. 2005-07-12 Jordi Mas i Hernandez <[email protected]>
  520. * ButtonTest.cs: add Default constructors tests
  521. * ImageButtonTest.cs: Adds ImageButtonTest
  522. 2005-07-11 Peter Dennis Bartok <[email protected]>
  523. * WebControlTest.cs: Added test.
  524. 2005-07-11 Sebastien Pouliot <[email protected]>
  525. * FontUnitTest.cs: Added more tests when looking for another bug...
  526. * StyleTest.cs: Added some unit tests for a null ctor and checks for
  527. emptyness.
  528. 2005-07-11 Jordi Mas i Hernandez <[email protected]>
  529. * ButtonTest.cs: New unit test for Button
  530. 2005-07-08 Sebastien Pouliot <[email protected]>
  531. * ImageTest.cs: New. Unit tests for Image.
  532. 2005-07-08 Jackson Harper <[email protected]>
  533. * LiteralTest.cs: new test.
  534. * MonthCalendarEventArgsTest.cs: new test.
  535. 2005-07-08 Jackson Harper <[email protected]>
  536. * AdCreatedEventArgsTest.cs: Added test.
  537. 2005-07-07 Miguel de Icaza <[email protected]>
  538. * XmlTest.cs: Added test.
  539. 2005-07-07 Peter Dennis Bartok <[email protected]>
  540. * StyleTest.cs: Added test.
  541. 2005-07-07 Miguel de Icaza <[email protected]>
  542. * LabelTest.cs: Add test.
  543. 2005-07-07 Ben Maurer <[email protected]>
  544. * FontUnitTest.cs: Make it run on msft
  545. 2005-07-06 Miguel de Icaza <[email protected]>
  546. * FontUnitTest.cs: New unit tests.
  547. * UnitTest.cs: Add support for different cultures and the Decimal
  548. separator,
  549. * UnitTest.cs: Add tests for null and "" arguments to Parse and
  550. Unit(string) which produce IsEmpty units.
  551. * UnitTest.cs: Fresh file with tests.
  552. 2004-10-08 Sanjay Gupta <[email protected]>
  553. * TestControlIDConverter.cs: Added new test file for ControlIDConverter.