ChangeLog 21 KB

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