ChangeLog 62 KB

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