ChangeLog 57 KB

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