ChangeLog 23 KB

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