ChangeLog 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820
  1. 2009-07-14 Rodrigo Kumpera <[email protected]>
  2. * DerivedTypesTest.cs: Added tests for generics related
  3. stuff and interaction with GenericTypeParameterBuilder.
  4. * GenericTypeParameterBuilderTest.cs: New file with tests
  5. for the changes done.
  6. 2009-07-08 Rodrigo Kumpera <[email protected]>
  7. * DerivedTypesTest.cs: New tests for PointerType.
  8. 2009-07-08 Rodrigo Kumpera <[email protected]>
  9. * DerivedTypesTest.cs: New tests for ByRefType.
  10. 2009-07-07 Rodrigo Kumpera <[email protected]>
  11. * DerivedTypesTest.cs: New tests for types derived from
  12. TypeBuilder.
  13. 2009-06-20 Zoltan Varga <[email protected]>
  14. * *.cs: Convert all tests to new-style nunit classes/methods.
  15. 2009-06-02 Rodrigo Kumpera <[email protected]>
  16. * ILGeneratorTest.cs: Tests for #509131.
  17. 2009-03-10 Zoltan Varga <[email protected]>
  18. * TypeBuilderTest.cs: Add a test for #483852.
  19. 2009-02-23 Zoltan Varga <[email protected]>
  20. * TypeBuilderTest.cs: Add more tests for user types.
  21. 2009-02-21 Jb Evain <[email protected]>
  22. * ModuleBuilderTest.cs: add a test accessing the property
  23. Module.ModuleVersionId on a dynamic module.
  24. Test for #471302.
  25. 2009-02-20 Zoltan Varga <[email protected]>
  26. * TypeBuilderTest.cs: Add minimal tests for user types + Ref.Emit.
  27. 2009-02-04 Zoltan Varga <[email protected]>
  28. * TypeBuilderTest.cs: Make this test quiet.
  29. 2009-01-21 Mark Probst <[email protected]>
  30. * TypeBuilderTest.cs: Add test for fields in dynamic generic
  31. classes.
  32. 2008-11-11 Rodrigo Kumpera <[email protected]>
  33. * ConstructorOnTypeBuilderInstTest.cs: Add test for
  34. MetadataToken under compilation context.
  35. 2008-09-29 Rodrigo Kumpera <[email protected]>
  36. * TypeBuilderTest.cs: Fix the 1.0 build.
  37. 2008-09-29 Rodrigo Kumpera <[email protected]>
  38. * TypeBuilderTest.cs: Add a test for MakeGenericType with EnumBuilder.
  39. Tests #430508.
  40. 2008-09-02 Rodrigo Kumpera <[email protected]>
  41. * TypeBuilderTest.cs: New test for a field with initialized data
  42. that is referenced from another assembly.
  43. 2008-08-31 Zoltan Varga <[email protected]>
  44. * TypeBuilderTest.cs: Add a test for IsAssignableFrom and generic instances
  45. of dynamic types.
  46. 2008-08-14 Raja R Harinath <[email protected]>
  47. * TypeBuilderTest.cs (DefineCtorUsingDefineMethod): Use a
  48. 'DefineMethod' overload that's present in the 1.1 profile.
  49. 2008-08-12 Zoltan Varga <[email protected]>
  50. * TypeBuilderTest.cs: Add new test for #416632.
  51. 2008-07-30 Rodrigo Kumpera <[email protected]>
  52. * MethodOnTypeBuilderInstTest.cs: Regression test for #412965.
  53. 2008-07-25 Rodrigo Kumpera <[email protected]>
  54. * TypeBuilderTest.cs: New test for the regression found by
  55. bug-333798-tb.2.cs.
  56. * MethodOnTypeBuilderInstTest.cs: Renable some CompilerContext
  57. tests.
  58. 2008-07-25 Rodrigo Kumpera <[email protected]>
  59. * TypeBuilderTest.cs: Disable the special behavior of GetMethod
  60. under compiler behavior as mcs has been fixed.
  61. 2008-07-22 Rodrigo Kumpera <[email protected]>
  62. * TypeBuilderTest.cs: Added tests for the special cased behavior
  63. of GetMethod.
  64. 2008-07-17 Rodrigo Kumpera <[email protected]>
  65. * MethodOnTypeBuilderInstTest.cs: Disable new tests as the change
  66. that made then work was reverted.
  67. 2008-07-16 Rodrigo Kumpera <[email protected]>
  68. * MethodOnTypeBuilderInstTest.cs: Added test for stuff under compiler
  69. context.
  70. 2008-06-21 Gert Driesen <[email protected]>
  71. * ModuleBuilderTest.cs: Added test for DefineType with interface as
  72. parent.
  73. * TypeBuilderTest.cs: Added test for SetParent with interface as
  74. parent. Added test for CreateType of an interface with invalid parent.
  75. Added tests for checks in DefineGenericParameters. Improved test
  76. for MakeGenericType, and added tests for argument checks in
  77. MakeGenericType.
  78. 2008-06-18 Rodrigo Kumpera <[email protected]>
  79. * TypeBuilderTest.cs: Fixed previous tests to follow the suite
  80. convention. Added tests for bugs #349194 and #400643.
  81. 2008-06-17 Rodrigo Kumpera <[email protected]>
  82. * TypeBuilderTest.cs: Added tests for retrieving custom attributes from
  83. generic instances of SRE types.
  84. 2008-06-11 Zoltan Varga <[email protected]>
  85. * TypeBuilderTest.cs (GetField): Add a test for calling GetField on an
  86. open generic type.
  87. 2008-06-10 Rodrigo Kumpera <[email protected]>
  88. * TypeBuilderTest.cs: Added test for bug #399047.
  89. 2008-05-18 Gert Driesen <[email protected]>
  90. * TypeBuilderTest.cs: Enabled test for bug #389171. Added and improved
  91. tests for IsAssignableFrom/IsAssignableTo. Added and improved tests
  92. for DefineDefaultConstructor.
  93. 2008-05-11 Gert Driesen <[email protected]>
  94. * TypeBuilderTest.cs: Added test for type null check in DefineField.
  95. 2008-05-11 Gert Driesen <[email protected]>
  96. * TypeBuilderTest.cs: Renamed tests and updated bug number. Enabled
  97. test for UnderlyingSystemType, and improved it. Improved test for
  98. null parent.
  99. * ConstructorOnTypeBuilderInstTest.cs: Enabled test for GetParameters.
  100. * ConstructorBuilderTest.cs: Enabled test for GetParameters. Renamed
  101. test for SetCustomAttribute, and added new tests.
  102. * ModuleBuilderTest.cs: Added tests for bug #387404.
  103. 2008-05-08 Rodrigo Kumpera <[email protected]>
  104. * TypeBuilderTest.cs: Added regression tests for #354047.
  105. 2008-05-05 Zoltan Varga <[email protected]>
  106. * ConstructorOnTypeBuilderInstTest.cs: Disable one more test for GetParameters ().
  107. 2008-05-03 Zoltan Varga <[email protected]>
  108. * ConstructorBuilderTest.cs: Mark the GetParameters_Incomplete () test not-working,
  109. as the corresponding fix has been reverted.
  110. 2008-05-01 Gert Driesen <[email protected]>
  111. * ConstructorBuilderTest.cs: Use Assert class instead of deriving from
  112. deprecated Assertion class. Improved some existing tests, and avoid
  113. creating too much TypeBuilder instances.
  114. 2008-04-30 Gert Driesen <[email protected]>
  115. * MethodOnTypeBuilderInstTest.cs: Fixed exception message in comments.
  116. * TypeBuilderTest.cs: Do not use ExpectedException to avoid false
  117. positives. Added argument check tests for DefineEvent, DefineField,
  118. DefineMethod, DefinePInvokeMethod and DefinePropety. Use
  119. Type.EmptyTypes instead of constructing empty array.
  120. * ConstructorBuilderTest.cs: Added Test attributes. Added tests
  121. for DefineParameter and Invoke overloads. Added tests for
  122. GetCustomAttributes overloads. Avoid use of ExpectedException.
  123. * ModuleBuilderTest.cs: Added tests for DefineType name argument
  124. checks.
  125. * ConstructorOnTypeBuilderInstTest.cs: Added basic set of tests.
  126. 2008-04-26 Gert Driesen <[email protected]>
  127. * MethodOnTypeBuilderInstTest.cs: Added basic set of tests.
  128. * TypeBuilderTest.cs: Added Test attribute.
  129. 2008-04-22 Zoltan Varga <[email protected]>
  130. * TypeBuilderTest.cs: Add tests for GetMethod () / GetConstructor ().
  131. 2008-04-14 Zoltan Varga <[email protected]>
  132. * AssemblyBuilderTest.cs (GetCustomAttributes_NotCreated): New test for
  133. #363447.
  134. 2008-03-29 Gert Driesen <[email protected]>
  135. * AssemblyBuilderTest.cs: Enabled DefineUnmanagedResource and
  136. DefineVersionInfoResource tests for ArgumentException when native
  137. resource is already defined. Added tests for not supported culture
  138. in AssemblyCultureAttribute when definining versioninfo resource.
  139. 2008-03-16 Zoltan Varga <[email protected]>
  140. * TypeBuilderTest.cs (GetField): Add test for #351172.
  141. 2008-03-14 Zoltan Varga <[email protected]>
  142. * TypeBuilderTest.cs: Add tests for GetField ().
  143. 2008-03-06 Zoltan Varga <[email protected]>
  144. * DynamicMethodTest.cs: Add a test for anon-hosted dynamic methods.
  145. * ModuleBuilderTest.cs: Add a test for #367668.
  146. 2008-03-06 Jb Evain <[email protected]>
  147. * ILGeneratorTest.cs: add test for #367663, checking
  148. that EmitCalli deals with null return types.
  149. 2008-03-03 Rodrigo Kumpera <[email protected]>
  150. * TypeBuilderTest.cs: Added CreateTypeFailsWithInvalidMethodOverride.
  151. Test for bug #361689.
  152. 2008-02-20 Raja R Harinath <[email protected]>
  153. * MethodBuilderTest.cs (Bug354757): New test.
  154. 2008-01-29 Zoltan Varga <[email protected]>
  155. * ModuleBuilderTest.cs: Add tests for GetTypes ().
  156. * AssemblyBuilderTest.cs (GetModule): Add some tests and comment out one which
  157. doesn't run on mono.
  158. 2008-01-21 Gert Driesen <[email protected]>
  159. * AssemblyBuilderTest.cs: Enabled test for bug #354970.
  160. 2008-01-20 Gert Driesen <[email protected]>
  161. * AssemblyBuilderTest.cs: Added tests for DefineUnmanagedResource and
  162. DefineVersionInfoResource overloads that check whether only a single
  163. unmanaged resource can be defined. Improved test for SetCustomAttribute.
  164. 2008-01-16 Gert Driesen <[email protected]>
  165. * TypeBuilderTest.cs: Enabled tests for bug #322762.
  166. 2008-01-06 Gert Driesen <[email protected]>
  167. * AssemblyBuilderTest.cs: Added (NotWorking) test for bug #351932.
  168. 2007-12-31 Gert Driesen <[email protected]>
  169. * AssemblyBuilderTest.cs: Improved existing AssemblyName related tests.
  170. Enabled AssemblyName tests that previously failed.
  171. 2007-12-29 Gert Driesen <[email protected]>
  172. * TypeBuilderTest.cs: Added tests for GetConstructor(s), GetEvent(s),
  173. GetField(s), GetPropert(y/ies) and GetMethod(s) that verify our
  174. behavior for inherited members. Most of these are marked NotWorking
  175. until bug #322762 is fixed.
  176. 2007-12-10 Zoltan Varga <[email protected]>
  177. * ModuleBuilderTest.cs: Simplify some code. Add tests for ResolveField ()
  178. and FieldBuilders.
  179. 2007-11-16 Atsushi Enomoto <[email protected]>
  180. * SignatureHelperTest.cs : new test.
  181. 2007-11-08 Rodrigo Kumpera <[email protected]>
  182. * TypeBuilderTest.cs: Enabled TestGetFieldsComplete_Generic.
  183. This tests bug #82625 / #325292.
  184. 2007-10-26 Zoltan Varga <[email protected]>
  185. * TypeBuilderTest.cs: Add a test for calling GetCustomAttributes on inflated
  186. generic types.
  187. 2007-10-15 Gert Driesen <[email protected]>
  188. * ILGeneratorTest.cs: Improve test for DeclareLocal null check.
  189. Added tests for null checks in Emit overloads.
  190. 2007-09-30 Gert Driesen <[email protected]>
  191. * DynamicMethodTest.cs: Marked test for bug #325444 as NotDotNet, and
  192. added link to MS bug report.
  193. 2007-09-23 Gert Driesen <[email protected]>
  194. * AssemblyBuilderTest.cs: Added test for ManifestModule. Added missing
  195. Test attributes. Avoid using ExpectedException, thereby improving lots
  196. of existing tests. Uncomment test that checks max length of dynamic
  197. module name and removed LAMESPEC, since MS implements the described
  198. behavior (but we don't, so mark it NotWorking). Code formatting.
  199. * TypeBuilderTest.cs: Removed unused variables.
  200. 2007-09-22 Gert Driesen <[email protected]>
  201. * TypeBuilderTest.cs: Added test for bug #327484. Split up and improved
  202. TestGetProperties(Flags)Incomplete and TestGetMethods(Flags)Incomplete
  203. tests. Improved TestGetMethodsComplete test.
  204. 2007-09-11 Jb Evain <[email protected]>
  205. * DynamicMethodTest.cs: add test for owner member access.
  206. 2007-09-11 Zoltan Varga <[email protected]>
  207. * MethodBuilderTest.cs: Add new tests for using generic types in the IL
  208. code stream.
  209. 2007-09-09 Zoltan Varga <[email protected]>
  210. * MethodBuilderTest.cs: Add a new test.
  211. 2007-09-02 Gert Driesen <[email protected]>
  212. * TypeBuilderTest.cs: Split up and improved ignored GetField(s) tests
  213. into MS and Mono tests. Added (NotWorking) test for bug #82625.
  214. 2007-08-17 Rolf Bjarne Kvinge <[email protected]>
  215. * ILGeneratorTest.cs: Added FilterAndCatchBlock (bug #81431), InvalidFilterBlock1, ValidFilterBlock1, ValidFilterBlock2.
  216. 2007-08-16 Gert Driesen <[email protected]>
  217. * TypeBuilderTest.cs: Added IsDefined test with null value for
  218. attributeType argument.
  219. 2007-07-14 Gert Driesen <[email protected]>
  220. * TypeBuilderTest.cs: Modified enum tests to use already constructed
  221. AssemblyBuilder and ModuleBuilder. Fixed some compiler warnings.
  222. Removed duplicate test for bug #82018. Added some IsCreated tests after
  223. TypeLoadException, but comment them out for now (see bug #82101).
  224. 2007-07-12 Rodrigo Kumpera <[email protected]>
  225. * TypeBuilderTest.cs: Added test for MakeArrayType with incomplete enum type. Related to bug #82015
  226. 2007-07-11 Rodrigo Kumpera <[email protected]>
  227. * TypeBuilderTest.cs: Added tests for enum creation. These tests are related to bugs #82018 and #82075
  228. 2007-07-06 Gert Driesen <[email protected]>
  229. * TypeBuilderTest.cs: Improved tests for SetParent.
  230. * ModuleBuilderTest.cs: Added test for creating non-abstract
  231. interface.
  232. 2007-07-06 Gert Driesen <[email protected]>
  233. * TypeBuilderTest.cs: Enabled test for IsCOMObject. Improved test
  234. for IsImport.
  235. 2007-07-06 Gert Driesen <[email protected]>
  236. * TypeBuilderTest.cs: Added tests for bug #82018. Added tests for
  237. MakeArrayType (2.0).
  238. 2007-05-21 Gert Driesen <[email protected]>
  239. * MethodBuilderTest.cs: Split up GetCustomAttributes test and marked
  240. the one for a baked type as NotWorking. Added test for
  241. SetCustomAttribute with SuppressUnmanagedCodeSecurity attribute.
  242. * TypeBuilderTest.cs: Split up HasElementType test and marked the
  243. baked variant as NotWorking on the 1.0 profile. Enabled additional
  244. test for bug #81640. Added test for SetCustomAttribute with
  245. SuppressUnmanagedCodeSecurity attribute.
  246. 2007-05-16 Gert Driesen <[email protected]>
  247. * TypeBuilderTest.cs: Added GetFields test for bug #81368. Enabled
  248. test for bug #81640.
  249. 2007-05-16 Gert Driesen <[email protected]>
  250. * TypeBuilderTest.cs: Use Assert instead of deprecated Assertion
  251. class. Number tests. Added tests for bug #81638 and #81640.
  252. 2007-05-06 Zoltan Varga <[email protected]>
  253. * TypeBuilderTest.cs: Add test for null parent.
  254. 2007-03-12 Zoltan Varga <[email protected]>
  255. * DynamicMethodTest.cs: Add a test for circular references.
  256. 2007-03-07 Gert Driesen <[email protected]>
  257. * EnumBuilderTest.cs: Enabled test that failed due to bug #81037.
  258. Coding style fixes.
  259. * ModuleBuilderTest.cs: Avoid compiler warning in test for bug #80435.
  260. Use Assert instead of deprecated Assertion class. Number tests.
  261. 2007-03-06 Rolf Bjarne Kvinge <[email protected]>
  262. * ModuleBuilderTest.cs: Added GetArrayMethodToStringTest () -#80435.
  263. 2007-03-05 Gert Driesen <[email protected]>
  264. * EnumBuilderTest.cs: Added tests for bug #81007. Use Assert instead
  265. of deriving from Assertion. Marked HasElementType test NotWorking on
  266. 2.0 profile.
  267. 2007-02-26 Gert Driesen <[email protected]>
  268. * MethodBuilderTest.cs: Move from Assertion to Assert. Added tests
  269. for zero-length and null dll name for DllImport. Enabled extra tests
  270. in TestDynamicParams.
  271. 2007-01-16 Rolf Bjarne Kvinge <[email protected]>
  272. * EnumBuilderTest.cs: Created test for #80396.
  273. 2006-12-15 Raja R Harinath <[email protected]>
  274. * TypeBuilderTest.cs (MakeGenericType, Fail_MakeGenericType): New
  275. tests inspired by #80253.
  276. 2006-09-16 Gert Driesen <[email protected]>
  277. * DynamicMethodTest.cs: Enabled tests for bug #79367.
  278. 2006-09-13 Gert Driesen <[email protected]>
  279. * DynamicMethodTest.cs: Added ctor tests for name null check. Added
  280. tests for bug #79367 (marked NotWorking).
  281. 2006-09-02 Zoltan Varga <[email protected]>
  282. * TypeBuilderTest.cs: Add a test for #79249.
  283. 2006-08-31 Zoltan Varga <[email protected]>
  284. * DynamicMethodTest.cs: Add a test for skipVisibility.
  285. 2006-07-31 Sebastien Pouliot <[email protected]>
  286. * AssemblyBuilderTest.cs: The GetType_IgnoreCase test case doesn't
  287. work under MS.
  288. * ConstructorBuilderTest.cs: The TestMethodHandle test case doesn't
  289. work under MS.
  290. 2006-07-09 Gert Driesen <[email protected]>
  291. * AssemblyBuilderTest.cs: Added test for bug #78724.
  292. * DynamicMethodTest.cs: Added test for bug #78253, and added test for
  293. empty method body.
  294. 2006-02-27 Gert Driesen <[email protected]>
  295. * ConstructorBuilderTest.cs: Expect ArgumentOutOfRangeException
  296. instead of ArgumentException when passing Request action to
  297. AddDeclarativeSecurity (bug #77640).
  298. * MethodBuilderTest.cs: Same.
  299. * TypeBuilderTest.cs: Same.
  300. 2005-12-15 Raja R Harinath <[email protected]>
  301. * TypeBuilderTest.cs (GenericType): Add a minimal testcase for
  302. generic type builders.
  303. 2005-12-12 Raja R Harinath <[email protected]>
  304. * AssemblyBuilderTest.cs (TestIsDefined): Make failure messages unique.
  305. 2005-12-10 Zoltan Varga <[email protected]>
  306. * MethodBuilderTest.cs: Add test for handling not accessible custom
  307. attributes.
  308. 2005-10-27 Zoltan Varga <[email protected]>
  309. * FieldBuilderTest.cs MethodBuilderTest.cs ConstructorBuilderTest.cs:
  310. Add tests for #76521.
  311. 2005-07-29 Zoltan Varga <[email protected]>
  312. * AssemblyBuilderTest.cs: Add test for #75650.
  313. 2005-07-21 Jb Evain <[email protected]>
  314. * ILGeneratorTest.cs: Add tests for exception filters (bug #75010).
  315. 2005-06-22 Gert Driesen <[email protected]>
  316. * MethodBuilderTest.cs: Updated existing tests to no longer define
  317. zero-length method body. Added tests for bug #75236.
  318. 2005-06-14 Sebastien Pouliot <[email protected]>
  319. * AssemblyBuilderTest.cs: Split AssemblyName_PublicKey to move culture
  320. tests to a new method (as their problem is different from #75246).
  321. 2005-06-13 Gert Driesen <[email protected]>
  322. * AssemblyBuilderTest.cs: Setting KeyPair of AssemblyName has
  323. currently no effect on PublicKey(Token) and FullName of AssemblyName
  324. of the AssemblyBuilder. Test for bug #75246.
  325. 2005-06-13 Gert Driesen <[email protected]>
  326. * AssemblyBuilderTest.cs: Removed inheritance from deprecated
  327. Assertion class. Use Assert class instead.
  328. 2005-06-12 Gert Driesen <[email protected]>
  329. * AssemblyBuilderTest.cs: Added AssemblyName tests that currently
  330. fail on Mono.
  331. 2005-06-12 Gert Driesen <[email protected]>
  332. * FieldBuilderTest.cs: Enabled tests for FieldHandle again after
  333. fixing regression.
  334. * ConstructorBuilderTest.cs: MethodHandle should not throw
  335. NotSupportedException.
  336. * MethodBuilderTest.cs: Enabled test for MethodHandle again after
  337. fixing regression, and added additional test.
  338. 2005-06-06 Zoltan Varga <[email protected]>
  339. * MethodBuilderTest.cs: Add tests for setting DllImportAttribute.
  340. 2005-05-12 Zoltan Varga <[email protected]>
  341. * TypeBuilderTest.cs: Add tests for bug #74906.
  342. 2005-04-30 Ben Maurer <[email protected]>
  343. * TypeBuilderTest.cs: Don't write to a specific path in /tmp --
  344. breaks multiple users.
  345. 2005-04-28 Zoltan Varga <[email protected]>
  346. * AssemblyBuilderTest.cs: Add test for GetModules ().
  347. 2005-04-16 Zoltan Varga <[email protected]>
  348. * MethodBuilderTest.cs: Add test for parameter attributes.
  349. 2005-03-24 Sebastien Pouliot <[email protected]>
  350. * MethodRentalCas.cs: New. CAS unit tests for MethodRental.
  351. 2005-03-23 Zoltan Varga <[email protected]>
  352. * TypeBuilderTest.cs: Fix this up after the last change.
  353. 2005-03-23 Martin Baulig <[email protected]>
  354. * TypeBuilderTest.cs (TestIsAssignableTo_NotDotNet): Put this
  355. whole method into the "NotWorking" category.
  356. 2005-03-23 Martin Baulig <[email protected]>
  357. * TypeBuilderTest.cs: Disable last test again since the bug report
  358. is reopened.
  359. 2005-03-21 Nick Drochak <[email protected]>
  360. * TypeBuilderTest.cs: Move asserts which fail on .NET to a new
  361. test method and disable it on .NET.
  362. 2005-03-09 Zoltan Varga <[email protected]>
  363. * TypeBuilderTest.cs: Reenable last test.
  364. 2005-03-09 Marek Safar <[email protected]>
  365. * ILGeneratorTest.cs: New test file.
  366. 2005-03-09 Zoltan Varga <[email protected]>
  367. * TypeBuilderTest.cs: Disable last test since the fix is reverted.
  368. 2005-03-08 Zoltan Varga <[email protected]>
  369. * TypeBuilderTest.cs: Add new test.
  370. 2005-02-11 Zoltan Varga <[email protected]>
  371. * TypeBuilderTest.cs: Add tests for IsAssignableFrom.
  372. 2004-01-31 Nick Drochak <[email protected]>
  373. * TypeBuilderTest.cs: Put "NotWorking" on failing tests for mono.
  374. 2004-01-30 Nick Drochak <[email protected]>
  375. * ModuleBuilderTest.cs: Avoid path length exceptions on Windows.
  376. 2004-11-22 Zoltan Varga <[email protected]>
  377. * AssemblyBuilderTest.cs: Add regression test for bug #69780.
  378. 2004-11-06 Zoltan Varga <[email protected]>
  379. * TypeBuilderTest.cs: Ignore some tests which depend on TypeBuilder
  380. features which are unlikely to change due to mcs depending on them.
  381. 2004-11-05 Zoltan Varga <[email protected]>
  382. * EnumBuilderTest.cs: Remove test that depends on the exact format
  383. of AssemblyName.FullName.
  384. 2004-11-04 Zoltan Varga <[email protected]>
  385. * TypeBuilderTest.cs: Add a TypeResolve test. Remove a test which
  386. depends on exception ordering.
  387. 2004-10-05 Zoltan Varga <[email protected]>
  388. * MethodBuilderTest.cs: Add tests for default values for parameters.
  389. 2004-10-02 Gert Driesen <[email protected]>
  390. * TypeBuilderTest.cs: Added test to ensure NotSupportedException is
  391. thrown when creating a type with a default ctor while parent does
  392. not have a default ctor.
  393. 2004-09-09 Zoltan Varga <[email protected]>
  394. * ModuleBuilderTest.cs: Add test for lookup of global methods.
  395. 2004-08-29 Nick Drochak <[email protected]>
  396. * TypeBuilderTestTest.cs: Call EnumBuilder.CreateType() before you call
  397. TypeBuilder.CreateType().
  398. 2004-08-08 Zoltan Varga <[email protected]>
  399. * TypeBuilderTest.cs: Add regression test for #62237.
  400. 2004-06-14 Sebastien Pouliot <[email protected]>
  401. * EnumBuilderTest.cs: Fixed typos so the test is reported in
  402. alphabetical order by NUnit.
  403. 2004-06-09 Gert Driesen <[email protected]>
  404. * TypeBuilderTest.cs: Added tests for completed/created type
  405. * FieldBuilderTest.cs: Added tests for FieldBuilder (mostly
  406. checking error conditions for now)
  407. * EnumBuilderTest.cs: Added tests for EnumBuilder
  408. * MethodBuilderTest.cs: Added tests for invalid parameter
  409. indexes for created types, added test for GetHashCode
  410. 2004-06-09 Gert Driesen <[email protected]>
  411. * MethodRentalTest.cs: Added check for invalid method size,
  412. fixed tests on MS.NET, Mono-stylized
  413. 2004-04-28 Zoltan Varga <[email protected]>
  414. * MethodRentalTest.cs: New file.
  415. 2004-03-24 Sebastien Pouliot <[email protected]>
  416. * AssemblyBuilderTest.cs: Added new tests to build strongnamed
  417. assemblies.
  418. 2004-03-22 Zoltan Varga <[email protected]>
  419. * CustomAttributeBuilderTest.cs: Call GetCustomAttributes with false
  420. so custom attributes on Object do not screw the results.
  421. 2004-03-15 Nick Drochak <[email protected]>
  422. * CustomAttributeBuilderTest.cs: Force test to pass if we are running
  423. on version 1.1 of the CLR. That version does not throw the exception.
  424. 2004-03-09 Jackson Harper <[email protected]>
  425. * AssemblyBuilderAccessTest.cs:
  426. * CustomAttributeBuilderTest.cs: New test cases
  427. from [email protected].
  428. 2004-02-16 Zoltan Varga <[email protected]>
  429. * MethodBuilderTest.cs: Fix test so it runs under MS.
  430. * TypeBuilderTest.cs: Add some tests.
  431. 2004-02-11 Zoltan Varga <[email protected]>
  432. * MethodBuilderTest.cs: Add tests for parameter info.
  433. 2004-01-27 Zoltan Varga <[email protected]>
  434. * AssemblyBuilderTest.cs (TestCustomAttributes): Remove
  435. KeyFileAttribute from the test, since it must point to a valid keyfile.
  436. 2004-01-09 Nick Drochak <[email protected]>
  437. * TypeBuilderTest.cs (TestEnums): Fix build with csc.
  438. 2004-01-07 Zoltan Varga <[email protected]>
  439. * TypeBuilderTest.cs (IsDefined): Comment out this test, since
  440. IsDefined works under mono.
  441. * TypeBuilderTest.cs (TestEnums): New test for using runtime generated
  442. enums.
  443. 2003-12-17 Nick Drochak <[email protected]>
  444. * ModuleBuilderTest.cs: Shorten the path, there's a 260-or-so character
  445. limit for the path name.
  446. 2003-12-15 Zoltan Varga <[email protected]>
  447. * MethodBuilderTest.cs ConstructorBuilderTest.cs: Add tests for
  448. AddDeclarativeSecurity.
  449. 2003-11-17 Zoltan Varga <[email protected]>
  450. * ConstructorBuilderTest.cs (TestAttributes): Make this test more
  451. general so it runs on mono too.
  452. 2003-07-11 Zoltan Varga <[email protected]>
  453. * ModuleBuilderTest.cs: Added tests for IsTransient ().
  454. * ModuleBuilderTest.cs: Added tests for DefineDocument ().
  455. * AssemblyBuilderTest.cs: Added error handling tests.
  456. 2003-06-30 Zoltan Varga <[email protected]>
  457. * MethodBuilderTest.cs (TestReturnType): Make test more general so
  458. it works both on Mono and MS.NET.
  459. 2003-06-15 Zoltan Varga <[email protected]>
  460. * EventBuilderTest.cs: New file.
  461. * PropertyBuilderTest.cs: New file.
  462. 2003-05-28 Nick Drochak <[email protected]>
  463. * MethodBuilderTest: correct order of expected and actual values.
  464. 2003-05-21 Zoltan Varga <[email protected]>
  465. * ModuleBuilderTest.cs: New file.
  466. 2003-05-20 Zoltan Varga <[email protected]>
  467. * TypeBuilderTest.cs: More tests.
  468. 2003-05-19 Zoltan Varga <[email protected]>
  469. * AssemblyBuilderTest.cs: More tests.
  470. 2003-05-12 Zoltan Varga <[email protected]>
  471. * MethodBuilderTest.cs: Comment out test which fails because of a mono
  472. extension to DefineParameter.
  473. 2003-02-13 Zoltan Varga <[email protected]>
  474. * AssemblyBuilderTest.cs: New file.
  475. 2003-02-12 Zoltan Varga <[email protected]>
  476. * MethodBuilderTest.cs: Added test for setting MethodImplAttributes
  477. using a custom attribute.
  478. 2003-02-10 Zoltan Varga <[email protected]>
  479. * ConstructorBuilderTest.cs: added SetCustomAttribute() tests.
  480. * MethodBuilderTest.cs: updated to NUNIT2 conventions.
  481. * ConstructorBuilderTest.cs: New file.
  482. 2003-02-09 Zoltan Varga <[email protected]>
  483. * TypeBuilderTest.cs: Added lots of new tests.
  484. 2003-02-08 Zoltan Varga <[email protected]>
  485. * TypeBuilderTest.cs: New file.
  486. * MethodBuilderTest.cs ChangeLog: New files.