ChangeLog 59 KB

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