ChangeLog 22 KB

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