ChangeLog 61 KB

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