2
0

ChangeLog 30 KB

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