ChangeLog 48 KB

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