ChangeLog 48 KB

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