ChangeLog 31 KB

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