ChangeLog 39 KB

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