ChangeLog 21 KB

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