ChangeLog 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254
  1. 2006-07-20 Andrew Skiba <[email protected]>
  2. * DetailsViewTest.cs: more precise lifetime flow check.
  3. 2006-07-20 Andrew Skiba <[email protected]>
  4. * DetailsViewTest.cs: add EnsureChildControls basic test.
  5. 2006-07-20 Andrew Skiba <[email protected]>
  6. * DetailsViewTest.cs: add a new assert
  7. 2006-07-20 Vladimir Krasnov <[email protected]>
  8. * PagerSettingsTest.cs: fixed PropertyChanged test
  9. 2006-07-19 Andrew Skiba <[email protected]>
  10. * DetailsViewTest.cs: #if VISUAL_STUDIO
  11. 2006-07-20 Yoni Klain <[email protected]>
  12. * GridViewTest.cs: added new tests
  13. 2006-07-19 Andrew Skiba <[email protected]>
  14. * DetailsViewTest.cs: #if NET_2_0
  15. * TableStyleTest.cs: Category ("NotWorking")
  16. 2006-07-19 Andrew Skiba <[email protected]>
  17. * TableStyleTest.cs: add a test for BackImageUrl rendering
  18. 2006-07-19 Merav Sudri <[email protected]>
  19. * DetailsViewRowTest.cs: added new test
  20. * DetailsViewRowCollectionTest.cs: added new test
  21. * FormViewRowTest.cs: added new test
  22. * FormViewTest.cs: added new test
  23. 2006-07-19 Merav Sudri <[email protected]>
  24. * DetailsViewTest.cs: added new test
  25. 2006-07-18 Vladimir Krasnov <[email protected]>
  26. * GridViewTest.cs: removed NotWorking attributes, added tests
  27. 2006-07-17 Yoni Klain <[email protected]>
  28. * SiteMapPathTest.cs: added new test
  29. 2006-07-17 Andrew Skiba <[email protected]>
  30. * CommandFieldTest.cs: added positive flow test for
  31. ValidateSupportsCallback
  32. 2006-07-17 Andrew Skiba <[email protected]>
  33. * WebControlTest.cs: added tests for display style
  34. 2006-07-17 Vladimir Krasnov <[email protected]>
  35. * GridViewTest.cs: added new test
  36. 2006-07-16 Vladimir Krasnov <[email protected]>
  37. * BoundFieldTest.cs: added new test
  38. 2006-07-16 Andrew Skiba <[email protected]>
  39. * SiteMapPathTest.cs: fix expected results for dotnet in 3 tests;
  40. add 2 new asserts for InitializeItem
  41. 2006-07-16 Vladimir Krasnov <[email protected]>
  42. * BulletedListTest.cs: removed NotWorking attributes
  43. 2006-07-16 Yoni Klain <[email protected]>
  44. * added WizardStepBaseTest.cs; WizardStepTest.cs; WizardStepCollectionTest.cs
  45. 2006-07-13 Gonzalo Paniagua Javier <[email protected]>
  46. * DataListTest.cs: new test for templated items. Patch by Jarosław
  47. Pawlak.
  48. 2006-07-12 Yoni Klain <[email protected]>
  49. * WizardTest.cs added new tests;
  50. * SiteMapPathTest.cs removed remarks
  51. 2006-07-11 Vladimir Krasnov <[email protected]>
  52. * GridViewTest.cs: added GridView_RenderingCheckBoxField2
  53. for testing of autogenerated checkbox column
  54. 2006-07-11 Yoni Klain <[email protected]>
  55. * ImageFieldTest.cs added new tests;
  56. 2006-07-10 Andrew Skiba <[email protected]>
  57. * SiteMapPathTest.cs: fix expected results for IE user-agent
  58. >>>>>>> .r62654
  59. 2006-07-09 Yoni Klain <[email protected]>
  60. * MenuTest.cs changes on postback;
  61. 2006-07-09 Yoni Klain <[email protected]>
  62. * ContentTest.cs changes on event test;
  63. 2006-07-07 Yoni Klain <[email protected]>
  64. * added PagerSettingsTest.cs;GridViewRowCollectionTest.cs;
  65. ContentTest.cs;GridViewRowTest.cs
  66. 2006-07-07 Yoni Klain <[email protected]>
  67. * GridViewTest.cs, MenuTest.cs added PostBack tests
  68. 2006-07-05 Vladimir Krasnov <[email protected]>
  69. * added CreateUserWizardTest.cs
  70. 2006-07-03 Vladimir Krasnov <[email protected]>
  71. * BoundFieldTest.cs, ButtonFieldTest.cs, DataControlFieldTest.cs
  72. HyperLinkFieldTest.cs, ImageFieldTest.cs: removed NotWorking
  73. attribute from Initialize test case
  74. 2006-06-28 Juraj Skripsky <[email protected]>
  75. * RegularExpressionValidatorTest.cs: check for automatic wrapping of
  76. expression with "^...$".
  77. 2006-06-28 Vladimir Krasnov <[email protected]>
  78. * Added WizardTest.cs: Wizard control basic tests
  79. 2006-06-25 Yoni Klain <[email protected]>
  80. * GridViewTest.cs;
  81. * AutoGeneratedFieldTest.cs;BoundFieldTest.cs;DataControlFieldTest.cs;
  82. * DataControlFieldCollectionTest.cs;DataKeyArrayTest.cs;
  83. * DataKeyTest.cs;ButtonFieldBaseTest.cs;HyperLinkFieldTest.cs;
  84. * CommandFieldTest.cs;CheckBoxFieldTest.cs;TemplateFieldTest.cs
  85. * GridView test and GridView subclasses tests.
  86. 2006-06-25 Konstantin Triger <[email protected]>
  87. * FormViewTest.cs: test for PageIndex bounds.
  88. 2006-06-21 Andrew Skiba <[email protected]>
  89. * ThemeTest.cs, SiteMapPathTest.cs, FormViewTest.cs, MenuTest.cs,
  90. MasterPageTest.cs: NunitWeb refactoring
  91. 2006-06-21 Andrew Skiba <[email protected]>
  92. * FileUploadTest.cs: add new tests for FileUpload control
  93. 2006-06-20 Andrew Skiba <[email protected]>
  94. * ThemeTest.cs: add new test for UrlPropertyAttribute
  95. 2006-06-20 Andrew Skiba <[email protected]>
  96. * FormViewTest.cs: add new test for CssClass attribute
  97. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  98. * RepeaterItemCollectionTest.cs: New file.
  99. 2006-06-14 Andrew Skiba <[email protected]>
  100. * MenuTest.cs: add test for CssClass attribute
  101. 2006-06-13 Juraj Skripsky <[email protected]>
  102. * CalendarTest.cs (SelectDateProperty): Make sure SelectedDate is
  103. automatically "rounded" to the same date with time set to 12:00am.
  104. 2006-05-28 Andrew Skiba <[email protected]>
  105. * ThemeTest.cs, MenuTest.cs, MasterPageTest.cs: rename methods to make
  106. nunit quiet
  107. 2006-05-21 Yoni Klain <[email protected]>
  108. * ThemeTest.cs - Add new test
  109. 2006-05-21 Yoni Klain <[email protected]>
  110. * MasterPageTest.cs - add attributes for NotWorking tests
  111. * MenuTest.cs - sleep time changed
  112. 2006-05-21 Yoni Klain <[email protected]>
  113. * Added MasterPageTest.cs
  114. 2006-05-21 Yoni Klain <[email protected]>
  115. * MenuTest.cs, SiteMapPathTest.cs ,BulletedListTest.cs - add attributes for NotWorking tests
  116. 2006-05-21 Yoni Klain <[email protected]>
  117. * Added ContentTest.cs
  118. 2006-05-17 Andrew Skiba <[email protected]>
  119. * MenuTest.cs, SiteMapPathTest.cs: multiple changes, now passes on
  120. dotnet with mono makefile
  121. 2006-05-14 Yoni Klain <[email protected]>
  122. * Added MenuTest.cs
  123. 2006-05-14 Yoni Klain <[email protected]>
  124. * Added SiteMapPathTest.cs
  125. 2006-04-30 Yoni Klain <[email protected]>
  126. * Added SiteMapDataSourceTest.cs
  127. 2006-04-23 Tal Klahr <[email protected]>
  128. * Added ViewTest.cs and MultiViewTest.cs
  129. 2006-04-25 Konstantin Triger <[email protected]>
  130. * FormViewTest.cs: added test for PageCount.
  131. 2006-04-20 Konstantin Triger <[email protected]>
  132. * FormViewTest.cs: added test for PageIndex.
  133. 2006-04-06 Konstantin Triger <[email protected]>
  134. * DataListTest.cs: added test for DataSourceID.
  135. 2006-04-06 Konstantin Triger <[email protected]>
  136. * LoginTest.cs: Added LayoutTemplate property Test.
  137. * LoginViewTest.cs: Added AnonymousTemplate property Test.
  138. 2006-03-28 Alexandre Miguel Pedro Gomes <[email protected]>
  139. * FontInfoTest.cs: Implemented ShouldSerializeNames tests
  140. 2006-03-06 Vladimir Krasnov <[email protected]>
  141. * CalendarTest.cs: refactoring, inline delegates replaced with
  142. regular ones.
  143. * LinkButtonTest.cs: same
  144. 2006-03-03 Vladimir Krasnov <[email protected]>
  145. * PagedDataSourceTest.cs: added TARGET_JVM part to exclude
  146. not working tests.
  147. * WebControlTest.cs: same
  148. 2006-02-21 Chris Toshok <[email protected]>
  149. * SqlDataSourceTest.cs, SqlDataSourceViewTest.cs,
  150. AccessDataSourceTest.cs: new tests.
  151. 2005-12-14 Gonzalo Paniagua Javier <[email protected]>
  152. * DropDownListTest.cs: test for html-encoding of the text.
  153. 2005-11-21 Gonzalo Paniagua Javier <[email protected]>
  154. * RadioButtonTest.cs: more tests for the 'name' attribute.
  155. 2005-10-24 Gonzalo Paniagua Javier <[email protected]>
  156. * LiteralTest.cs: Literal allows LiteralControl.
  157. 2005-10-20 Gonzalo Paniagua Javier <[email protected]>
  158. * ListBoxTest.cs: a few more tests for ListBox and selection.
  159. 2005-10-18 Gonzalo Paniagua Javier <[email protected]>
  160. * ListControlTest.cs: 3 more tests for ListControl.
  161. 2005-10-17 Gonzalo Paniagua Javier <[email protected]>
  162. * CustomValidatorTest.cs: an empty control name is valid.
  163. 2005-10-17 Sebastien Pouliot <[email protected]>
  164. * RequiredFieldValidatorCas.cs: New. CAS unit for
  165. RequiredFieldValidator.
  166. 2005-10-10 Gonzalo Paniagua Javier <[email protected]>
  167. * DataListTest.cs: added some style and IRepeatInfoUser tests.
  168. 2005-10-04 Gonzalo Paniagua Javier <[email protected]>
  169. * ListBoxTest.cs: the name is the UniqueID, not the ClientID.
  170. * WebControlTest.cs: Attributes statebag is case insensitive.
  171. 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
  172. * ImageButtonTest.cs: test that 'name' attribute is rendered.
  173. 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
  174. * DataGridTest.cs: Test for ButtonColumn with DataTextField.
  175. 2005-10-02 Gonzalo Paniagua Javier <[email protected]>
  176. * DataGridTest.cs: new test for the style of the linkbutton in the
  177. headers when sorting is enabled. Also test that the Items property
  178. contains the DataGridItems.
  179. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  180. * TableCellTest.cs: the "Text" viewstate value does not control whether
  181. we render the children or not.
  182. * EditCommandColumnTest.cs: some tests do not pass on MS rutime for me,
  183. so I've made them NotDotNet and fixed all the problems. Also added tests
  184. to ensure that the TextBox's form the BoundColumns are present in the
  185. hierarchy, as before we did nothing there.
  186. * ButtonTest.cs: test to show that a Button's children are not rendered.
  187. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  188. * PagedDataSourceTest.cs: more tests.
  189. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  190. * PagedDataSourceTest.cs: more tests.
  191. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  192. * CalendarTest.cs: added test to check for ID and base attributes being
  193. copied from the calendar into the table.
  194. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  195. * PagedDataSourceTest.cs: nullref is throw on null DataSource.
  196. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  197. * DataGridTest.cs: fixed a test and added a commented out one that works
  198. fine in mono but throws nullref with MS.
  199. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  200. * DataGridTest.cs: more tests that add a TemplateColumn.
  201. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  202. * EditCommandColumnTest.cs: added a test here for datagrid, as this was
  203. the file whose test failed because the id of the datagrid generated
  204. table.
  205. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  206. * FontUnitCas.cs: method name change in FontUnitTest.
  207. * FontUnitTest.cs: splitted tests, enabled the "NotWorking" ones and
  208. added tests for FontSize names beginning with x and containing a dash.
  209. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  210. * ListControlTest.cs: new tests for SelectedValue, SelectedIndex and
  211. DataBinding.
  212. 2005-09-24 Gonzalo Paniagua Javier <[email protected]>
  213. * DataGridTest.cs:
  214. * DataListTest.cs: OnItemCommand is raised always in OnBubbleEvent.
  215. 2005-09-23 Sebastien Pouliot <[email protected]>
  216. * LoginTest.cs: Make OnBubbleEvent_Authenticated_OnAuthenticate test
  217. case "work" on both MS and Mono.
  218. * UnitTest.cs: IncorrectConstructor9 was fixed (in 2.0 RC) to throw
  219. the FormatException (just like earlier fx did).
  220. 2005-09-23 Sebastien Pouliot <[email protected]>
  221. * LabelCas.cs, LinkButtonCas.cs, ListBoxCas.cs, ListControlCas.cs,
  222. ListItemCas.cs, ListItemCollectionCas.cs, LiteralCas.cs, LoginCas.cs,
  223. LoginNameCas.cs, LoginStatusCas.cs, MonthChangedEventArgsCas.cs,
  224. PagedDataSourceCas.cs, PanelCas.cs, RadioButtonCas.cs,
  225. RadioButtonListCas.cs, RangeValidatorCas.cs,
  226. RegularExpressionValidatorCas.cs, RepeaterCas.cs, RepeatInfoCas.cs,
  227. RoleGroupCas.cs, RoleGroupCollectionCas.cs,
  228. SelectedDatesCollectionCas.cs, StyleCas.cs, TableCas.cs,
  229. TableCellCas.cs, TableFooterRowCas.cs, TableHeaderCellCas.cs,
  230. TableHeaderRowCas.cs, TableItemStyleCas.cs, TableRowCas.cs,
  231. TableSectionStyleCas.cs, TableStyleCas.cs, TargetConverterCas.cs,
  232. TextBoxCas.cs, TreeViewCas.cs, UnitCas.cs, UnitConverterCas.cs,
  233. ValidatedControlConverterCas.cs, ValidationSummaryCas.cs,
  234. WebColorConverterCas.cs, WebControlCas.cs, XmlCas.cs,
  235. XmlDataSourceCas.cs: New CAS unit tests - checks for LinkDemands and
  236. re-execute the "classic" unit tests under the most retricted security
  237. permissions possible.
  238. 2005-09-23 Sebastien Pouliot <[email protected]>
  239. * LinkButtonTest.cs: Fixed fixture name (Text -> Test).
  240. * ListItemTest.cs: Fixed header.
  241. * LoginTest.cs: Changed [Ignore] to [Category ("NotDotNet")] on
  242. OnBubbleEvent_Authenticated_OnAuthenticate () test case.
  243. * PagedDataSourceTest.cs: Added missing [Test] to
  244. TestEnumerators_NoPaging test case.
  245. * RadioButtonListTest.cs: Fixed header.
  246. * RepeatInfoTest.cs: Add missing [Test] on DefaultValues test case.
  247. * UnitConverterTest.cs: Fixed test cases (commited bu never executed)
  248. before including it in the suite.
  249. * ValidatorTest.cs: Fixed header.
  250. * WebColorConverterTest.cs: Fixed header.
  251. 2005-09-21 Sebastien Pouliot <[email protected]>
  252. * AdCreatedEventArgsCas.cs, BaseCompareValidatorCas.cs,
  253. BaseDataBoundControlCas.cs, BaseDataListCas.cs, BaseValidatorCas.cs,
  254. BoundColumnCas.cs, ButtonColumnCas.cs, CalandarCas.cs,
  255. CalendarDayCas.cs, CheckBoxCas.cs, CheckBoxListCas.cs,
  256. CompareValidatorCas.cs, CompositeControlCas.cs, CustomValidatorCas.cs,
  257. DataBoundControlCas.cs, DataGridCas.cs, DataGridColumnCas.cs,
  258. DataGridItemCas.cs, DataGridItemCollectionCas.cs,
  259. DataGridPagerStyleCas.cs, DataKeyCollectionCas.cs, DataListItemCas.cs,
  260. DataListItemCollectionCas.cs, EditCommandColumnCas.cs, FontInfoCas.cs,
  261. FontNamesConverterCas.cs, FontUnitCas.cs, FormViewCas.cs,
  262. HyperLinkCas.cs, HyperLinkColumnCas.cs, ImageButtonCas.cs,
  263. ImageCas.cs: New CAS unit tests - checks for LinkDemands and
  264. re-execute the "classic" unit tests under the most retricted security
  265. permissions possible.
  266. 2005-09-20 Gonzalo Paniagua Javier <[email protected]>
  267. * DataGridTest.cs: added data binding tests.
  268. * BaseDataListTest.cs: it's DataKeys (arraylist) what gets to the
  269. viewstate, not the DataKeyCollection.
  270. 2005-09-20 Sebastien Pouliot <[email protected]>
  271. * AdCreatedEventArgsTest.cs, BaseCompareValidatorTest.cs,
  272. CompositeControlTest.cs, DataListTest.cs, DropDownListTest.cs,
  273. EditCommandColumnTest.cs, FontNamesConverterTest.cs, FormViewTest.cs,
  274. ListControlTest.cs, MonthChangedEventArgsTest.cs,
  275. RadioButtonListTest.cs, StyleTest.cs, TableCellTest.cs,
  276. TextBoxTest.cs, TreeViewTest.cs, ValidatedControlConverterTest.cs:
  277. Fixed tests results under 2.0 Release Candidate (for NET_2_0).
  278. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  279. * DataGridTest.cs: fix expected/actual order. Added test for HeaderText
  280. and empty ArrayList.
  281. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  282. * TableCellTest.cs: TableCell does not get an automatic ID.
  283. 2005-09-19 Gonzalo Paniagua Javier <[email protected]>
  284. * TableStyleTest.cs: added test to check that GridLines is correctly
  285. restored in LoadViewState.
  286. 2005-09-13 Gonzalo Paniagua Javier <[email protected]>
  287. * TableCellTest.cs: added new test cases for bug #76078.
  288. 2005-09-09 Gonzalo Paniagua Javier <[email protected]>
  289. * ListItemTest.cs: tests for ListItem.
  290. * RadioButtonListTest.cs: more test for load/raise.
  291. 2005-09-09 Chris Toshok <[email protected]>
  292. * StyleTest.cs (FontInfo_Empty): test to see if changes to
  293. Style.Font cause changes in the style's empty status.
  294. 2005-09-07 Chris Toshok <[email protected]>
  295. * CalendarTest.cs (TestSelectedColorDefault): we need to split up
  296. the color tests since they're rendered in different orders by
  297. ms/us.
  298. 2005-09-07 Chris Toshok <[email protected]>
  299. * ListControlTest.cs: add tests for the ControlState.
  300. 2005-09-05 Chris Toshok <[email protected]>
  301. * FormViewTest.cs: new tests.
  302. 2005-09-05 Chris Toshok <[email protected]>
  303. * DataBoundControlTest.cs: new tests.
  304. * BaseDataBoundControlTest.cs: new tests.
  305. 2005-09-01 Chris Toshok <[email protected]>
  306. * ListControlTest.cs (DefaultProperties): add tests for TagKey,
  307. Text, and AppendDataBoundItems.
  308. (ViewStateContents): add checks for Text and AppendDataBoundItems.
  309. 2005-09-01 Raja R Harinath <[email protected]>
  310. * CalendarTest.cs: Remove duplicate using-declarations.
  311. * XmlDataSourceTest.cs: Protect with NET_2_0 guard.
  312. * RepeaterTest.cs (Poker.GetSelectArguments): Likewise.
  313. (Poker.DoCreateDataSourceSelectArguments): Likewise.
  314. (Repeater_DefaultsSelectArguments): Likewise.
  315. 2005-08-31 Chris Toshok <[email protected]>
  316. * TreeViewTest.cs: beginnings of new tests.
  317. * RepeaterTest.cs: same.
  318. * XmlDataSourceTest.cs: same.
  319. 2005-08-27 Chris Toshok <[email protected]>
  320. * TextBoxTest.cs: add 2.0 test to show that validation properties
  321. have no effect on downlevel rendering.
  322. 2005-08-26 Chris Toshok <[email protected]>
  323. * TextBoxTest.cs: add tests for the 2.0 validation properties, and
  324. to make sure they're getting saved to the viewstate.
  325. 2005-08-26 Chris Toshok <[email protected]>
  326. * FontUnitTest.cs: Add tests for the two 2.0 constructors, and the
  327. 2.0 ToString(IFormatProvider) method.
  328. * UnitTest.cs: Add tests for the 2.0 ToString(IFormatProvider)
  329. method.
  330. 2005-08-26 Sebastien Pouliot <[email protected]>
  331. * TableStyleTest.cs: New test cases for 2.0.
  332. 2005-08-25 Sebastien Pouliot <[email protected]>
  333. * CheckBoxListTest.cs: Use Ben's CleanHtmlTextWriter to compare
  334. rendered output. Re-ordered the expected value to match. Rendering
  335. tests now pass on Mono 1.x|2.0 profile and MS 1.x.
  336. * DropDownListTest.cs: (Properties) we have the same 2.0 failure on
  337. both Mono and MS runtime, maybe it's a feature ;-)
  338. 2005-08-25 Chris Toshok <[email protected]>
  339. * CalendarTest.cs: add viewstate tests for Caption/CaptionAlign
  340. (2.0).
  341. 2005-08-25 Sebastien Pouliot <[email protected]>
  342. * HyperLinkTest.cs: Fixed the expected output rendering for 2.0.
  343. 2005-08-25 Peter Dennis Bartok <[email protected]>
  344. * StyleTest.cs: Added tests for CssRegisteredStyle
  345. 2005-08-25 Sebastien Pouliot <[email protected]>
  346. * StyleTest.cs: Added test for IsStyleEmpty(null).
  347. 2005-08-24 Chris Toshok <[email protected]>
  348. * ValidationSummaryTest.cs (ValidationSummary_ValidationGroup):
  349. add tests for ValidationGroup, making sure it's stored in the
  350. ViewState.
  351. 2005-08-24 Sebastien Pouliot <[email protected]>
  352. * RoleGroupTest.cs: New (2.0). Unit tests for RoleGroup.
  353. * RoleGroupCollectionTest.cs: New (2.0). Unit tests for
  354. RoleGroupCollection.
  355. 2005-08-23 Chris Toshok <[email protected]>
  356. * RepeatInfoTest.cs (RenderRepeater_BaseControl): the 2.0 ReatInfo
  357. class does things a little differently.
  358. 2005-08-22 Chris Toshok <[email protected]>
  359. * ListControlTest.cs: #if NET_2_0 some of the asserts whose values
  360. are different in 2.0.
  361. * ValidationSummaryTest.cs: same.
  362. * XmlTest.cs: same.
  363. * ListBoxTest.cs: same.
  364. * CheckBoxTest.cs: same.
  365. * UnitTest.cs: same.
  366. * TextBoxTest.cs: same.
  367. * CustomValidatorTest.cs: same.
  368. * DataGridTest.cs: same.
  369. * BaseCompareValidatorTest.cs: remove ko-KR, since my laptop
  370. presently can't find it, and we already have another ymd date
  371. element order.
  372. 2005-08-22 Chris Toshok <[email protected]>
  373. * RepeatInfoTest.auto.cs: regenerate.
  374. * RepeatInfoTest.auto.2.0.cs: generate using .Net 2.0.
  375. * RepeatInfoTest.gen.cs: add wrapper #ifdefs for the 1.x/2.0 cases
  376. - we need both.
  377. 2005-08-22 Chris Toshok <[email protected]>
  378. * BaseCompareValidatorTest.cs: fix the tests that change behavior
  379. between 1.x and 2.0.
  380. 2005-08-22 Chris Toshok <[email protected]>
  381. * LinkButtonTest.cs: add validation group tests.
  382. 2005-08-22 Chris Toshok <[email protected]>
  383. * ImageButtonTest.cs: add NET_2_0 validation tests.
  384. 2005-08-22 Chris Toshok <[email protected]>
  385. * CheckBoxTest.cs: add NET_2_0 validation tests.
  386. 2005-08-22 Chris Toshok <[email protected]>
  387. * ButtonTest.cs (Button_DefaultValues): add NET_2_0 test for
  388. ValidationGroup.
  389. (Button_ViewState): same.
  390. 2005-08-22 Sebastien Pouliot <[email protected]>
  391. * LoginNameTest.cs: New. Unit tests for LoginName control (2.0).
  392. * LoginStatusTest.cs: New. Unit tests for LoginStatus control (2.0).
  393. 2005-08-19 Sebastien Pouliot <[email protected]>
  394. * TableCellTest.cs: Add test cases for AssociatedHeaderCellID (2.0).
  395. 2005-08-18 Sebastien Pouliot <[email protected]>
  396. * BaseDataListTest.cs: Added test cases for new properties, methods
  397. and events defined in 2.0.
  398. * LoginTest.cs: Added test cases for On* methods.
  399. 2005-08-17 Chris Toshok <[email protected]>
  400. * CompositeControlTest.cs: put it in the MonoTests. namespace so
  401. it shows up in the right place in the nunit gui.
  402. 2005-08-16 Sebastien Pouliot <[email protected]>
  403. * DataListTest.cs: Fixed ViewState test to work on both 1.x and 2.0.
  404. Added tests for Load|SaveControlState (2.0). Added basic tests for
  405. SelectedValue property (2.0).
  406. * LoginTest.cs: Added test cases to check for null (removal) on all
  407. string properties, added checks for all enums properties. Also added
  408. test case for SaveViewState.
  409. 2005-08-15 Sebastien Pouliot <[email protected]>
  410. * TableHeaderRowTest.cs: New. Reuse TableRowTest test cases to test
  411. TableHeaderRow class (2.0).
  412. * TableFooterRowTest.cs: New. Reuse TableRowTest test cases to test
  413. TableFooterRow class (2.0).
  414. * TableRowTest.cs: Added test cases for new (2.0) TableSection
  415. property. Reworked the tests to allow easier reuse of them by the
  416. TableHeaderRow and TableFooterRow classes.
  417. 2005-08-14 Sebastien Pouliot <[email protected]>
  418. * LoginTest.cs: New. Unit tests to test default values for Login.
  419. * TableHeaderCellTest.cs: Add tests for CategoryText and Scope
  420. properties (new in 2.0).
  421. * TableSectionStyleTest.cs: New. Unit tests for TableSectionStyle.
  422. Note that this new 2.0 class seems broken as it is not complete (MS).
  423. 2005-08-12 Chris Toshok <[email protected]>
  424. * CompositeControlTest.cs: a couple of tests for CompositeControl.
  425. 2005-08-09 Sebastien Pouliot <[email protected]>
  426. * BaseDataListTest.cs: Added tests for OnDataBinding.
  427. * DataLitItemTest.cs: Added more useful tests for rendering items,
  428. including a test when two tables are present and extractRows is true.
  429. Added tests for IDataItemContainer (2.0).
  430. 2005-08-08 Jackson Harper <[email protected]>
  431. * PagedDataSourceTest.cs: Tests for creating enumerators when
  432. paging is not enabled.
  433. 2005-08-08 Sebastien Pouliot <[email protected]>
  434. * HyperLinkTest.cs: Updated comments. Resolve doesn't work when doing
  435. unit tests (probably because it requires a Page, or something else
  436. that can be used as the base url for the application).
  437. 2005-08-03 Peter Dennis Bartok <[email protected]>
  438. * EditCommandColumnTest.cs: Updated; InitializeCell() passes except
  439. for the missing footer; InitializeCellEdit() has a problem with
  440. the name given to the TextBox controls
  441. 2005-08-05 Jackson Harper <[email protected]>
  442. * PagedDataSourceTest.cs: Tests for PageCount.
  443. 2005-08-04 Ben Maurer <[email protected]>
  444. * CalendarTest.cs: Test based on an msdn example. Again, I (heart)
  445. anonymous methods.
  446. 2005-08-04 Dick Porter <[email protected]>
  447. * DataGridColumnTest.cs: Tests for DataGridColumn
  448. 2005-08-03 Ben Maurer <[email protected]>
  449. * RepeatInfoTest.cs: Test for copying from base control
  450. * WebControlTest.cs: Issue I found while doing repeatinfo
  451. * LabelTest.cs: New tests.
  452. * PanelTest.cs: New tests
  453. 2005-08-03 Peter Dennis Bartok <[email protected]>
  454. * EditCommandColumnTest.cs: Enable tests
  455. 2005-08-03 Peter Dennis Bartok <[email protected]>
  456. * DataGridPagerStyleTest.cs: Added testcase
  457. 2005-08-03 Jordi Mas i Hernandez <[email protected]>
  458. * CalendarTest.cs: Trackview states
  459. 2005-08-02 Jackson Harper <[email protected]>
  460. * BoundColumnTest.cs: Start of tests for the BoundColumn class.
  461. 2005-08-02 Jordi Mas i Hernandez <[email protected]>
  462. * RadioButtonListTest.cs: test unit
  463. 2005-08-01 Jackson Harper <[email protected]>
  464. * TableStyleTest.cs: Check that items copied set the styles flags.
  465. 2005-08-01 Jackson Harper <[email protected]>
  466. * PagedDataSourceTest.cs: Test the enumerators a little.
  467. 2005-07-30 Chris Toshok <[email protected]>
  468. * HyperLinkColumnTest.cs: add some tests for how the column
  469. initializes a TableCell.
  470. 2005-07-30 Ben Maurer <[email protected]>
  471. * RepeatInfoTest.auto.cs: Regen.
  472. * RepeatInfoTest.gen.cs: Autogenerate tests for 0 items
  473. 2005-07-29 Chris Toshok <[email protected]>
  474. * BaseCompareValidatorTest.cs (CanConvert): disable B9, until we
  475. figure out a culture independent way to do it.
  476. (Convert): same with C17/C18.
  477. (MiscPropertiesAndMethods): test CutoffYear, GetFullYear, and
  478. GetDateElementOrder.
  479. 2005-07-27 Peter Dennis Bartok <[email protected]>
  480. * StyleTest.cs: Added font-related tests to check for special
  481. Name/Names behaviour
  482. 2005-07-29 Chris Toshok <[email protected]>
  483. * BaseCompareValidatorTest.cs: use DateTime to generate the
  484. strings for our date tests, since they're culture specific.
  485. 2005-07-29 Dick Porter <[email protected]>
  486. * RadioButtonTest.cs: Added tests for RadioButton
  487. 2005-07-29 Jordi Mas i Hernandez <[email protected]>
  488. * SelectedDatesCollectionTest.cs: new unit test
  489. * CalendarDayTest.cs: new unit test
  490. * CalendarTest.cs: more tests for calendar control
  491. 2005-07-28 Jackson Harper <[email protected]>
  492. * EditCommandColumnTest.cs: Make the DataGridTest nested so my
  493. top secret DataGrid tests will still compile.
  494. 2005-07-27 Peter Dennis Bartok <[email protected]>
  495. * EditCommandColumnTest.cs: Added tests; marked some as NotWorking
  496. until PagedDataSource is not throwing NotImpl
  497. 2005-07-27 Peter Dennis Bartok <[email protected]>
  498. * CustomValidatorTest.cs: Added tests
  499. 2005-07-27 Peter Dennis Bartok <[email protected]>
  500. * DataGridPagerStyleTest.cs: Added tests
  501. 2005-07-26 Peter Dennis Bartok <[email protected]>
  502. * DataGridItemTest.cs: Added tests
  503. 2005-07-26 Peter Dennis Bartok <[email protected]>
  504. * DataGridItemCollectionTest.cs: Added tests
  505. 2005-07-26 Ben Maurer <[email protected]>
  506. * RepeatInfoTest.cs: Remove tests that are contained below
  507. * RepeatInfoTest.auto.cs: Generated tests.
  508. * RepeatInfoTest.gen.cs: A test generator for repeatinfo
  509. 2005-07-25 Peter Dennis Bartok <[email protected]>
  510. * StyleTest.cs: Refined tests
  511. 2005-07-25 Jackson Harper <[email protected]>
  512. * DataGridTest.cs: More tests for the pager.
  513. 2005-07-22 Jackson Harper <[email protected]>
  514. * DataGridTest.cs: Basic test for InitializePager.
  515. 2005-07-22 Sebastien Pouliot <[email protected]>
  516. * HyperLinkTest.cs: New. (very basic) unit tests for HyperLink.
  517. 2005-07-21 Jackson Harper <[email protected]>
  518. * DataGridTest.cs: Test the order the events are invoked in when
  519. creating the control hierarchy.
  520. 2005-07-21 Sebastien Pouliot <[email protected]>
  521. * BaseDataList.cs: Replace IList test with IEnumerable test.
  522. * RepeatInfoTest.cs: Ignore the test about the baseControl / NRE.
  523. * TableCellTest.cs: Added tests for AddParsedSubObject versus the Text
  524. property (and LiteralControl).
  525. 2005-07-21 Peter Dennis Bartok <[email protected]>
  526. * CustomValidatorTest.cs: Added
  527. 2005-07-21 Peter Dennis Bartok <[email protected]>
  528. * RangeValidatorTest.cs: More test cases
  529. 2005-07-21 Sebastien Pouliot <[email protected]>
  530. * RepeatInfoTest.cs: Added test for RepeatColumn is 0.
  531. * TableRowTest.cs: Added style rendering tests (for my sanity).
  532. 2005-07-21 Jackson Harper <[email protected]>
  533. * PagedDataSourceTest.cs: Test to see what happens when we get a
  534. non ITypedList.
  535. 2005-07-21 Duncan Mak <[email protected]>
  536. * HyperLinkColumnTest.cs: Added new test for HyperLinkColumn.
  537. 2005-07-20 Peter Dennis Bartok <[email protected]>
  538. * DropDownListTest.cs: Added [ExpectedException] for double select
  539. test
  540. 2005-07-20 Ben Maurer <[email protected]>
  541. * DropDownListTest.cs (InitialSelectionMade): Add a test for a
  542. regression that seems to be caused by some change to
  543. ListItemCollection. Add this file to sources as all tests other
  544. than this pass using the old impl of ddl except for this, which is
  545. a regression.
  546. 2005-07-20 Sebastien Pouliot <[email protected]>
  547. * RepeatInfoTest.cs: More unit tests for arguments checks, default
  548. values, baseControl (not figured out yet) and OuterTableImplied.
  549. 2005-07-20 Jackson Harper <[email protected]>
  550. 2005-07-20 Jackson Harper <[email protected]>
  551. * DataGridTest.cs: Make sure we get back a proper columns
  552. collection.
  553. 2005-07-20 Jackson Harper <[email protected]>
  554. * DataGridTest.cs: The columns collection cached from the
  555. CreateColumnSet is stored in the view state.
  556. 2005-07-20 Sebastien Pouliot <[email protected]>
  557. * BaseDataListTest.cs: Added more tests ported from DataGridTest.
  558. * DataListTest.cs: Added more tests ported from DataGridTest.
  559. 2005-07-20 Peter Dennis Bartok <[email protected]>
  560. * ValidationSummaryTest.cs: Added rendering tests
  561. 2005-07-20 Jackson Harper <[email protected]>
  562. * DataGridTest.cs: Test generating column names with/without
  563. enabling useDataSource.
  564. 2005-07-20 Sebastien Pouliot <[email protected]>
  565. * DataListTest.cs: Add viewstate test.
  566. 2005-07-20 Jackson Harper <[email protected]>
  567. * DataGridTest.cs: Check the properties of newly created
  568. BoundColumns.
  569. 2005-07-20 Sebastien Pouliot <[email protected]>
  570. * BaseDataListTest.cs: Add render tests (all empty).
  571. * DataListTest.cs: Added Controls vs Items test.
  572. * WebControlTest.cs: Added new (passing) tests.
  573. 2005-07-19 Jackson Harper <[email protected]>
  574. * PagedDataSource.cs: New unit test for GetItemProperties.
  575. 2005-07-19 Jackson Harper <[email protected]>
  576. * DataGridTest.cs: New tests for creating column sets.
  577. 2005-07-19 Sebastien Pouliot <[email protected]>
  578. * DataListTest.cs: Add more tests for IRepeatInfoUser.
  579. * RepeatInfoTest.cs: New. Unit test for RepeatInfo (not exactly what
  580. I had expected...).
  581. 2005-07-19 Jackson Harper <[email protected]>
  582. * CheckBoxListTest.cs: New tests for FindControl.
  583. 2005-07-19 Jackson Harper <[email protected]>
  584. * DataGridTest.cs: New test for viewstate saving.
  585. 2005-07-19 Chris Toshok <[email protected]>
  586. * BaseValidatorTest.cs: use the right call (SetValidationTextBox)
  587. in ValidatorTest.
  588. 2005-07-19 Peter Dennis Bartok <[email protected]>
  589. * DropDownListTest.cs: Testcases added
  590. * RangeValidatorTest.cs: Added
  591. * ValidatedControlConverterTest.cs: Added
  592. * ValidationSummaryTest.cs: Added
  593. 2005-07-19 Chris Toshok <[email protected]>
  594. * BaseCompareValidatorTest.cs: add date tests.
  595. 2005-07-19 Jackson Harper <[email protected]>
  596. * DataGridTest.cs: Bubble tests for Page command. Tests for bad
  597. Page command bubble event args.
  598. 2005-07-19 Jackson Harper <[email protected]>
  599. * DataGridTest.cs: Select can also be bubbled.
  600. 2005-07-19 Jackson Harper <[email protected]>
  601. * DataGridTest.cs: Tests for the BubbleEvent.
  602. 2005-07-19 Jackson Harper <[email protected]>
  603. * DataGridTest.cs: New tests. Just does properties and events for
  604. the most part.
  605. 2005-07-18 Chris Toshok <[email protected]>
  606. * BaseCompareValidatorTest.cs: note the lack of Date tests, and
  607. add null tests.
  608. 2005-07-18 Chris Toshok <[email protected]>
  609. * BaseCompareValidatorTest.cs: new tests.
  610. 2005-07-19 Ben Maurer <[email protected]>
  611. * UnitConverterTest.cs: New tests
  612. 2005-07-18 Chris Toshok <[email protected]>
  613. * CompareValidatorTest.cs (CompareValidator_ValueToCompareTest,
  614. CompareValidator_ControlToCompareTest): new methods.
  615. * ValidatorTest.cs: add AddTextBox method.
  616. 2005-07-18 Chris Toshok <[email protected]>
  617. * RegularExpressionValidatorTest.cs: add a simple validation test.
  618. * ValidatorTest.cs: add a base class for validator tests, that
  619. enables a little scaffolding for faking out the test.
  620. 2005-07-18 Chris Toshok <[email protected]>
  621. * CompareValidatorTest.cs: new tests.
  622. 2005-07-18 Chris Toshok <[email protected]>
  623. * RegularExpressionValidatorTest.cs: new test.
  624. 2005-07-18 Sebastien Pouliot <[email protected]>
  625. * DataListTest.cs: Fix tests for 1.1 which keeps more stuff into it's
  626. ViewState.
  627. 2005-07-15 Peter Dennis Bartok <[email protected]>
  628. * DropDownListTest.cs: Testcases added
  629. 2005-07-15 Jackson Harper <[email protected]>
  630. * CheckBoxListTest.cs: New tests for FindControl.
  631. 2005-07-15 Jackson Harper <[email protected]>
  632. * WebControlTest.cs: New test to make sure NamingContainers are
  633. honoured when rendering client ids.
  634. 2005-07-15 Jackson Harper <[email protected]>
  635. * CheckBoxListTest.cs: More tests for the IRepeatInfoUser stuff
  636. and for rendering.
  637. 2005-07-15 Sebastien Pouliot <[email protected]>
  638. * BaseDataListTest.cs: New. Unit tests for abstract BaseDataList.
  639. * DataKeyCollectionTest.cs: New. Unit tests for DataKeyCollection.
  640. * DataListItemCollectionTest.cs: New. Unit tests for
  641. DataListItemCollection.
  642. * DataListItemTest.cs: New. Unit tests for DataListItem (incomplete).
  643. * DataListTest.cs: New. Unit tests for DataList (incomplete).
  644. 2005-07-14 Jackson Harper <[email protected]>
  645. * CheckBoxListTest.cs: Rendering tests.
  646. 2005-07-14 Jackson Harper <[email protected]>
  647. * CheckBoxListTest.cs: Fix the exception types thrown for bad
  648. enums. Mark as NotWorking as this doesn't work with the old
  649. CheckBoxList class anymore.
  650. 2005-07-14 Jackson Harper <[email protected]>
  651. * CheckBoxListTest.cs: Add some rendering tests. These aren't
  652. fully working yet so they are in the NotWorking category.
  653. 2005-07-14 Jackson Harper <[email protected]>
  654. * CheckBoxListTest.cs: This has the potential to be a beautiful
  655. test.
  656. 2005-07-14 Peter Dennis Bartok <[email protected]>
  657. * WebColorConverter.cs: Testcases added
  658. 2005-07-14 Jackson Harper <[email protected]>
  659. * ListControlTest.cs: New test for the viewstate and item
  660. selection.
  661. 2005-07-14 Dick Porter <[email protected]>
  662. * CheckBoxTest.cs: Added enum checks
  663. 2005-07-14 Peter Dennis Bartok <[email protected]>
  664. * TargetConverterTest.cs: Testcases added
  665. 2005-07-14 Duncan Mak <[email protected]>
  666. * PagedDataSourceTest.cs: Added testcases.
  667. (PageCountTest, CountTest, IsLastPageTest): Needs more work.
  668. 2005-07-13 Peter Dennis Bartok <[email protected]>
  669. * FontNamesConverterTest.cs: Testcases added
  670. 2005-07-13 Peter Dennis Bartok <[email protected]>
  671. * ListItemCollectionTest.cs: Added
  672. * ListBoxTest.cs: Marked test as not working since it dependes on
  673. ListControl making a call to an obsolete internal method
  674. 2005-07-13 Jackson Harper <[email protected]>
  675. * ListControlTest.cs: New tests for the ListControl.
  676. 2005-07-13 Jackson Harper <[email protected]>
  677. * ListBoxTest.cs: Exception is thrown (by ListControl). Dont run
  678. the BadBorderStyle test as this fails in ListControls.
  679. 2005-07-13 Sebastien Pouliot <[email protected]>
  680. * ImageTest.cs: Added tests for DescriptionUrl in 1.1 profile as this
  681. property was added in Fx 1.1 SP1.
  682. * StyleTest.cs: Added more tests for CopyFrom to test it's behavior,
  683. e.g. it doesn't reset itself nor remove it's properties if they're
  684. not part of the copied Style instance.
  685. * TableTest.cs: Adjusted values so we're not testing a 100% match with
  686. MS lines/indentations.
  687. * TableRowTest.cs: Use Ben's trick on StreamWriter (\r\n). Adjusted
  688. values so we're not testing a 100% match with MS lines/indentations.
  689. * WebControlTest.cs: Added tests to remove attributes and style before
  690. rendering. Empty style properties shouldn't be rendered.
  691. 2005-07-13 Dick Porter <[email protected]>
  692. * CheckBoxTest.cs: Added tests for CheckBox - currently all
  693. passing on mono and ms runtimes.
  694. 2005-07-12 Sebastien Pouliot <[email protected]>
  695. * WebControlTest.cs: Added another test for RenderBeginTag, this time
  696. using an attribute (renamed old test as it was for style attributes).
  697. 2005-07-12 Peter Dennis Bartok <[email protected]>
  698. * WebControlTest.cs: Added test for loading/saving of state. Switched
  699. to use Sebastiens GetWriter method
  700. 2005-07-12 Jackson Harper <[email protected]>
  701. * ListBoxTest.cs: Some simple tests for the ListBox control.
  702. 2005-07-12 Sebastien Pouliot <[email protected]>
  703. * TableTest.cs: Use Ben's trick on StreamWriter.
  704. * WebControlTest.cs: Added tests for RenderBeginTag.
  705. 2005-07-12 Sebastien Pouliot <[email protected]>
  706. * TableCellTest.cs: New. Unit tests for TableCell.
  707. * TableItemStyleTest.cs: New. Unit tests for TableItemStyle.
  708. * TableHeaderCellTest.cs: New. Unit tests for TableHeaderCell.
  709. * TableRowTest.cs: New. Unit tests for TableRow.
  710. * TableStyleTest.cs: New. Unit tests for TableStyle.
  711. * TableTest.cs: New. Unit tests for Table.
  712. 2005-07-12 Miguel de Icaza <[email protected]>
  713. * UnitTest.cs: Update test suite.
  714. 2005-07-12 Jordi Mas i Hernandez <[email protected]>
  715. * ButtonTest.cs: add Default constructors tests
  716. * ImageButtonTest.cs: Adds ImageButtonTest
  717. 2005-07-11 Peter Dennis Bartok <[email protected]>
  718. * WebControlTest.cs: Added test.
  719. 2005-07-11 Sebastien Pouliot <[email protected]>
  720. * FontUnitTest.cs: Added more tests when looking for another bug...
  721. * StyleTest.cs: Added some unit tests for a null ctor and checks for
  722. emptyness.
  723. 2005-07-11 Jordi Mas i Hernandez <[email protected]>
  724. * ButtonTest.cs: New unit test for Button
  725. 2005-07-08 Sebastien Pouliot <[email protected]>
  726. * ImageTest.cs: New. Unit tests for Image.
  727. 2005-07-08 Jackson Harper <[email protected]>
  728. * LiteralTest.cs: new test.
  729. * MonthCalendarEventArgsTest.cs: new test.
  730. 2005-07-08 Jackson Harper <[email protected]>
  731. * AdCreatedEventArgsTest.cs: Added test.
  732. 2005-07-07 Miguel de Icaza <[email protected]>
  733. * XmlTest.cs: Added test.
  734. 2005-07-07 Peter Dennis Bartok <[email protected]>
  735. * StyleTest.cs: Added test.
  736. 2005-07-07 Miguel de Icaza <[email protected]>
  737. * LabelTest.cs: Add test.
  738. 2005-07-07 Ben Maurer <[email protected]>
  739. * FontUnitTest.cs: Make it run on msft
  740. 2005-07-06 Miguel de Icaza <[email protected]>
  741. * FontUnitTest.cs: New unit tests.
  742. * UnitTest.cs: Add support for different cultures and the Decimal
  743. separator,
  744. * UnitTest.cs: Add tests for null and "" arguments to Parse and
  745. Unit(string) which produce IsEmpty units.
  746. * UnitTest.cs: Fresh file with tests.
  747. 2004-10-08 Sanjay Gupta <[email protected]>
  748. * TestControlIDConverter.cs: Added new test file for ControlIDConverter.