ChangeLog 54 KB

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