ChangeLog 33 KB

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