ChangeLog 23 KB

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