ChangeLog 56 KB

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