ChangeLog 46 KB

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