ChangeLog 25 KB

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