ChangeLog 48 KB

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