2
0

ChangeLog 29 KB

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