ChangeLog 67 KB

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