ChangeLog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891
  1. 2010-06-08 Rodrigo Kumpera <[email protected]>
  2. * MethodInfoTest.cs: Fix test for variant iface.
  3. 2010-04-20 Rodrigo Kumpera <[email protected]>
  4. * BinderTest.cs: Add tests for #325306.
  5. 2010-04-19 Zoltan Varga <[email protected]>
  6. * *.cs: Fix warnings.
  7. 2010-04-08 Rodrigo Kumpera <[email protected]>
  8. * FieldInfoTest.cs: Add tests for #594942.
  9. 2010-04-01 Rodrigo Kumpera <[email protected]>
  10. * AssemblyTest.cs: Fix one more tests under v4.
  11. 2010-03-25 Rodrigo Kumpera <[email protected]>
  12. *AssemblyTest.cs: Fix one more tests under v4.
  13. 2010-03-24 Rodrigo Kumpera <[email protected]>
  14. *AssemblyTest.cs: Fix some tests under v4.
  15. 2010-03-11 Rodrigo Kumpera <[email protected]>
  16. * FieldInfoTest.cs: Remove invalid assert.
  17. 2010-02-26 Rodrigo Kumpera <[email protected]>
  18. * AssemblyTest.cs: Fix test under v4.
  19. * MonoGenericClassTest.cs: Ditto.
  20. 2010-02-10 Rodrigo Kumpera <[email protected]>
  21. * PropertyInfoTest.cs: Tests for default value.
  22. 2010-02-10 Rodrigo Kumpera <[email protected]>
  23. * PropertyInfoTest.cs: Tests for custom attributes from PropertyInfo::GetIndexParameters.
  24. 2010-02-05 Rodrigo Kumpera <[email protected]>
  25. * PropertyInfoTest.cs: Make tests for GetIndexParameters() work.
  26. 2010-02-05 Rodrigo Kumpera <[email protected]>
  27. * MethodInfoTest.cs: New test for GetParameters() returning the interned array.
  28. * PropertyInfoTest.cs: New tests for GetIndexParameters().
  29. 2010-01-19 Rodrigo Kumpera <[email protected]>
  30. * MethodInfoTest.cs: Add a test for Invoke with generic variant
  31. interfaces.
  32. 2010-01-05 Rodrigo Kumpera <[email protected]>
  33. * ParameterInfoTest.cs: Add a test for default values from custom
  34. attributes.
  35. 2009-12-17 Rodrigo Kumpera <[email protected]>
  36. * MonoGenericClassTest.cs: Test for some corner cases of
  37. GetMethod that must work under compiler context.
  38. 2009-12-09 Rodrigo Kumpera <[email protected]>
  39. * MethodBaseTest.cs: Remove all NET_2_0 directives. Add test
  40. for GetCurrentMethod and generics.
  41. 2009-12-08 Rodrigo Kumpera <[email protected]>
  42. * MethodInfoTest.cs: Add some tests for MS compatible behavior of
  43. MakeGenericMethod.
  44. 2009-10-18 Sebastien Pouliot <[email protected]>
  45. * MethodBaseTest.cs: Add new, working, test for non-generic
  46. GetMethodFromHandle. Add test case to show generic overload
  47. behave exactly the same when no second RuntimeMethodHandle is
  48. provided. Remove [Category("NotWorking")] on existing test case.
  49. 2009-08-07 Rodrigo Kumpera <[email protected]>
  50. * MonoGenericClassTest.cs: Test for methods that must
  51. throw.
  52. 2009-08-04 Rodrigo Kumpera <[email protected]>
  53. * MonoGenericClassTest.cs: New file.
  54. 2009-07-30 Zoltan Varga <[email protected]>
  55. * FieldInfoTest.cs: Add a test for #525733.
  56. 2009-07-27 Rodrigo Kumpera <[email protected]>
  57. * AssemblyTest.cs: Add test for empty string passed to
  58. Assembly::GetType.
  59. 2009-07-27 Rodrigo Kumpera <[email protected]>
  60. * EventInfoTest.cs: Add test for private event and
  61. RemoveEventHandler.
  62. 2009-07-27 Rodrigo Kumpera <[email protected]>
  63. * EventInfoTest.cs: Add test for cast incompatible type.
  64. * EventInfoTest.cs: Add test for private event.
  65. * EventInfoTest.cs: Add test for null target for non static
  66. event.
  67. 2009-07-14 Gert Driesen <[email protected]>
  68. * BinderTests.cs: Modified SelectMethod_ByRef and BindToMethod_ByRef
  69. to compile on net_1_1 profile. Added tests for SelectMethod and
  70. BindToMethod with params arguments, currently marked NotWorking.
  71. 2009-07-14 Raja R Harinath <[email protected]>
  72. * BinderTests.cs (SelectMethod_ByRef, BindToMethod_ByRef): Disable
  73. in net_1_1 profile.
  74. 2009-07-12 Gert Driesen <[email protected]>
  75. * BinderTest.cs: Added SelectMethod/BindToMethod tests for methods
  76. with byref arguments.
  77. 2009-06-20 Zoltan Varga <[email protected]>
  78. * *.cs: Convert all tests to new-style nunit classes/methods.
  79. 2009-06-12 Zoltan Varga <[email protected]>
  80. * ParameterInfoTest.cs: Add a test for #512330.
  81. 2009-05-03 Sebastien Pouliot <[email protected]>
  82. * MethodInfoTest.cs: Add test cases from Joachim Ante for bug
  83. #500385.
  84. 2009-03-26 Zoltan Varga <[email protected]>
  85. * ParameterInfoTest.cs: Add a test for #488383.
  86. 2009-03-03 Matthew Metnetsky <[email protected]>
  87. * BinderTests.cs: added tests for TargetParameterCountException
  88. * BinderTests.cs: added tests for BindingFlags.ExactBinding
  89. 2009-03-11 Zoltan Varga <[email protected]>
  90. * BinderTests.cs: Add a test for #484294.
  91. 2009-02-21 Jb Evain <[email protected]>
  92. * BinderTests.cs: add test for bug #471257, where Type.InvokeMember
  93. calls Binder.BindToMethod will a null args.
  94. 2009-02-04 Zoltan Varga <[email protected]>
  95. * MethodBaseTest.cs: Make a test quiet.
  96. 2008-02-03 Rodrigo Kumpera <[email protected]>
  97. * MethodInfoTest.cs: Fix the 1.1 build.
  98. 2008-02-02 Rodrigo Kumpera <[email protected]>
  99. * MethodInfoTest.cs: Test for non primitive structs.
  100. 2008-02-02 Rodrigo Kumpera <[email protected]>
  101. * MethodInfoTest.cs: Test for #409583.
  102. 2008-11-17 Rodrigo Kumpera <[email protected]>
  103. * FieldInfoTest.cs: Test FieldInfo::GetValue on a constant of an open
  104. generic type.
  105. 2008-11-11 Rodrigo Kumpera <[email protected]>
  106. * ModuleTest.cs : Add test for ResolveMethod with a methodspec
  107. token.
  108. 2008-10-10 Zoltan Varga <[email protected]>
  109. * AssemblyTest.cs (LoadWithPartialName): Fix this test after the
  110. 'default' -> 'net_1_1' profile change.
  111. 2008-10-02 Gonzalo Paniagua Javier <[email protected]>
  112. * ConstructorInfoTest.cs: enable abstract class test.
  113. 2008-09-08 Zoltan Varga <[email protected]>
  114. * FieldInfoTest.cs (SetValueOpenGeneric): Fix copy-paste error.
  115. 2008-09-07 Zoltan Varga <[email protected]>
  116. * FieldInfoTest.cs: Add tests for #424077.
  117. 2008-06-30 Rodrigo Kumpera <[email protected]>
  118. * MethodBase.cs: Fix the 1.0 build.
  119. 2008-06-27 Rodrigo Kumpera <[email protected]>
  120. * MethodBase.cs: Added tests for GetMethodFromToken.
  121. 2008-06-13 Gert Driesen <[email protected]>
  122. * PropertyInfoTest.cs: Added test for bug #399985.
  123. 2008-05-12 Gert Driesen <[email protected]>
  124. * FieldInfoTest.cs: Added tests for GetFieldFromHandle.
  125. * MethodBaseTest.cs: Added tests for GetMethodFromHandle.
  126. 2008-04-16 Zoltan Varga <[email protected]>
  127. * BinderTests.cs: Applied patch from Yves Bastide ([email protected]). Add
  128. tests for converting integers to enums.
  129. 2008-03-25 Zoltan Varga <[email protected]>
  130. * ConstructorInfoTest.cs: Add a test for #373459.
  131. * MethodInfoTest.cs: Add a test for #373448.
  132. 2008-03-14 Zoltan Varga <[email protected]>
  133. * BinderTests.cs: Add tests for #367655.
  134. 2008-03-10 Gert Driesen <[email protected]>
  135. * AssemblyTest.cs: Improved tests for GetFile, GetObjectData and
  136. GetCustomAttributes.
  137. 2008-02-20 Raja R Harinath <[email protected]>
  138. * MethodInfoTest.cs (GetGenericMethodDefinition): Add a test for
  139. an instantiation.
  140. (Bug354757): New test.
  141. 2008-02-18 Zoltan Varga <[email protected]>
  142. * CustomAttributeDataTest.cs: New file.
  143. 2008-02-02 Gert Driesen <[email protected]>
  144. * MethodInfoTest.cs: Numbered tests. Improved existing tests.
  145. * ParameterInfoTest.cs: Added test for bug #342536.
  146. 2008-01-30 Zoltan Varga <[email protected]>
  147. * AssemblyTest.cs (GetModules_MissingFile): Rename the generated assembly to
  148. avoid name clashes.
  149. * AssemblyTest.cs: Add a test for GetModules () and a missing module.
  150. * ModuleTest.cs: Add a test for GetTypes ().
  151. 2008-01-20 Gert Driesen <[email protected]>
  152. * AssemblyNameTest.cs: Added test for effect of AssemblyNameFlags on
  153. FullName. Added test for PublicKey with value "null". Added ctor test
  154. for Retargetable spec.
  155. 2008-01-15 Jb Evain <[email protected]>
  156. * MethodInfoTest.cs: Add test for null arguments to
  157. MakeGenericMethod (#353849).
  158. 2008-01-06 Gert Driesen <[email protected]>
  159. * AssemblyNameTest.cs: Improved tests for ProcessorArchictecture.
  160. 2007-12-31 Gert Driesen <[email protected]>
  161. * AssemblyNameCas.cs: Sync test methods with AssemblyNameTest.cs.
  162. * AssemblyNameTest.cs: Removed AssertEqualsByteArrays method since
  163. NUnit supports this out-of-the-box. Use more meaningful names for
  164. some existing tests. Improved existing tests and added lots more.
  165. Enabled tests that were previously failing. Fixed and improved
  166. tests for public key; the original "public key" was actually a
  167. key pair.
  168. 2007-12-28 Gert Driesen <[email protected]>
  169. * AssemblyNameTest.cs: Improved culture test to cover bug #347174.
  170. 2007-12-05 Zoltan Varga <[email protected]>
  171. * FieldInfoTest.cs: Add tests for #346160.
  172. 2007-12-03 Zoltan Varga <[email protected]>
  173. * FieldInfoTest.cs: Add GetRawDefaultValue () tests.
  174. 2007-11-05 Mark Probst <[email protected]>
  175. * BinderTests.cs: Add test for bug #324998.
  176. 2007-11-04 Miguel de Icaza <[email protected]>
  177. * ParameterInfoTest.cs: Add new test for testing the [Optional]
  178. attribute making ParameterInfo.DefaultValue become
  179. System.Reflection.Missing.
  180. 2007-11-01 Zoltan Varga <[email protected]>
  181. * BinderTests.cs: Add a test for the ParamArray attribute.
  182. 2007-10-17 Gert Driesen <[email protected]>
  183. * AssemblyTest.cs: Enabled test for bug #334204.
  184. 2007-10-16 Gert Driesen <[email protected]>
  185. * AssemblyTest.cs: Added test for bug #334203. Use more meaningful name
  186. for test for bug #49114.
  187. 2007-10-04 Raja R Harinath <[email protected]>
  188. * AssemblyTest.cs (bug328812): New test.
  189. 2007-09-25 Zoltan Varga <[email protected]>
  190. * PropertyInfoTest.cs: Add test for calling ReflectedType on accessors.
  191. 2007-09-23 Gert Driesen <[email protected]>
  192. * AssemblyTest.cs: Added test for ManifestModule.
  193. 2007-09-17 Gert Driesen <[email protected]>
  194. * AssemblyTest.cs: Added test for GetManifestResourceStream argument
  195. checks.
  196. 2007-08-17 Gert Driesen <[email protected]>
  197. * FieldInfoTest.cs: Enabled test for bug #82465.
  198. 2007-08-17 Gert Driesen <[email protected]>
  199. * ModuleTest.cs: Enabled tests on 2.0 profile since bug #82459 is
  200. fixed.
  201. 2007-08-17 Gert Driesen <[email protected]>
  202. * ParameterInfoTest.cs: Minor code formatting change.
  203. * FieldInfoTest.cs: Added test for GetCustomAttributes. Modified test
  204. for pseudo customattributes to work on 1.0 profile too.
  205. 2007-08-16 Gert Driesen <[email protected]>
  206. * AssemblyTest.cs: Added IsDefined test with null value for
  207. attributeType argument.
  208. * ModuleTest.cs: Same. Remove use of deprecated Assertion class, code
  209. formatting and fixed line endings.
  210. * ParameterInfoTest.cs: Same. Remove use of deprecated Assertion class
  211. and code formatting.
  212. * MethodInfoTest.cs: Same.
  213. * EventInfoTest.cs: Same. Code formatting.
  214. * FieldInfoTest.cs: Same. Code formatting.
  215. * PropertyInfoTest.cs: Same. Improved coverage of GetAccessors.
  216. Improved tests for GetCustomAttributes. Code formatting.
  217. 2007-08-03 Zoltan Varga <[email protected]>
  218. * MethodInfoTest.cs: Add another test.
  219. * MethodInfoTest.cs: Add test for Invoking methods with a nullable type receiver.
  220. 2007-07-20 Gert Driesen <[email protected]>
  221. * MethodInfoTest.cs: Added GetMethodFromHandle test for generic type.
  222. 2007-07-20 Raja R Harinath <[email protected]>
  223. * MethodInfoTest.cs (GetGenericMethodDefinition): New. Based on
  224. Atsushi's testcase in #78068.
  225. 2007-07-19 Atsushi Enomoto <[email protected]>
  226. * MethodInfoTest.cs : fix incorrect parameter type output.
  227. 2007-07-19 Atsushi Enomoto <[email protected]>
  228. * MethodInfoTest.cs : added ToString() test for generic return type.
  229. 2007-07-09 Mark Probst <[email protected]>
  230. * AssemblyTest.cs: Enabled test for bug 78465.
  231. 2007-07-05 Gert Driesen <[email protected]>
  232. * MethodInfoTest.cs: Added test for bug #81997. Code formatting.
  233. 2007-06-22 Raja R Harinath <[email protected]>
  234. * MethodInfoTest.cs (IsGenericMethodDefinition): New.
  235. 2007-06-02 Zoltan Varga <[email protected]>
  236. * PropertyInfoTest.cs: Mark new test as NotWorking.
  237. * PropertyInfoTest.cs: Added new test.
  238. 2007-05-07 Gert Driesen <[email protected]>
  239. * MethodInfoTest.cs: Modified test for bug #81538 to verify both
  240. 1.0 and 2.0 behavior.
  241. 2007-05-07 Zoltan Varga <[email protected]>
  242. * MethodInfoTest.cs: Add test case for #81538.
  243. 2007-05-01 Gert Driesen <[email protected]>
  244. * ConstructorInfoTest.cs: Added tests for Invoke.
  245. 2007-05-01 Zoltan Varga <[email protected]>
  246. * MethodInfoTest.cs: Reenable a NotWorking test which is working now.
  247. 2007-03-14 Eyal Alaluf <[email protected]>
  248. * MethodInfoTest.cs: Disabled tests for TARGET_JVM that use MethodBody.
  249. 2006-11-14 Raja R Harinath <[email protected]>
  250. * AssemblyTest.cs (bug79872): New test for #79872.
  251. 2006-10-22 Gert Driesen <[email protected]>
  252. * AssemblyTest.cs: Added tests for bug #79712 and #79715. All marked
  253. NotWorking.
  254. 2006-10-19 Gert Driesen <[email protected]>
  255. * AssemblyNameTest.cs: Added test for CodeBase of AssemblyName
  256. filled by AssemblyName.GetAssemblyName. Added tests for bug #79661.
  257. 2006-09-29 Jb Evain <[email protected]>
  258. * FieldInfoTest.cs: Test for FieldInfo.SetValue on a literal field.
  259. 2006-09-06 Zoltan Varga <[email protected]>
  260. * ParameterInfoTest.cs: Add a test for enum default parameter values.
  261. 2006-09-02 Zoltan Varga <[email protected]>
  262. * MethodInfoTest.cs: Add a test for the ReturnParameter property.
  263. 2006-08-08 Gert Driesen <[email protected]>
  264. * AssemblyTest.cs: Modified test to pass on 2.0 profile and .NET 2.0.
  265. 2006-07-12 Zoltan Varga <[email protected]>
  266. * MethodInfoTest.cs: Add tests for ContainsGenericParameters ().
  267. 2006-07-09 Gert Driesen <[email protected]>
  268. * AssemblyTest.cs: Enabled test for bug #78468.
  269. 2006-07-01 Zoltan Varga <[email protected]>
  270. * MethodInfoTest.cs: Add a test for #77888.
  271. 2006-06-29 Raja R Harinath <[email protected]>
  272. * MethodInfoTest.cs (GetBaseDefinition): New test for
  273. MethodInfo.GetBaseDefinition.
  274. 2006-06-07 Zoltan Varga <[email protected]>
  275. * BinderTests.cs: Add test for BindingFlags.ExactBinding.
  276. 2006-05-28 Gert Driesen <[email protected]>
  277. * MethodInfoTest.cs: No longer derive from (deprecated) Assertion.
  278. Number individual asserts. Marked ByrefVtypeInvoke as NotDotNet for
  279. NET_1_1 profile, due to bug in MS.NET 1.1.
  280. 2006-05-28 Gert Driesen <[email protected]>
  281. * MethodInfoTest.cs: GetMethodBody no longer throws ArgumentException
  282. for methods that have no IL body. Part of fix for bug #78522.
  283. 2006-05-28 Gert Driesen <[email protected]>
  284. * AssemblyTest.cs: Added tests for bug #78517.
  285. 2006-05-20 Gert Driesen <[email protected]>
  286. * AssemblyTest.cs: Added tests for bugs #78464, #78465 and #78468.
  287. Spaces to tabs.
  288. 2006-05-09 Atsushi Enomoto <[email protected]>
  289. * BinderTests.cs : (BindToMethodNamedArgs) hmm, why it didn't
  290. show up during my last test run...
  291. 2006-05-08 Atsushi Enomoto <[email protected]>
  292. * BinderTests.cs : added test for bug #77079.
  293. 2006-05-08 Atsushi Enomoto <[email protected]>
  294. * BinderTests.cs : added test for bug #42547.
  295. 2006-05-08 Atsushi Enomoto <[email protected]>
  296. * BinderTests.cs : added test for bug #41691.
  297. 2006-03-09 Zoltan Varga <[email protected]>
  298. * MethodInfoTest.cs: Add test for #77668.
  299. 2006-02-11 Zoltan Varga <[email protected]>
  300. * FieldInfoTest.cs: Revert nullable reftype tests.
  301. 2006-02-09 Zoltan Varga <[email protected]>
  302. * FieldInfoTest.cs: Add tests for nullable reference types.
  303. 2006-02-07 Martin Baulig <[email protected]>
  304. * MethodInfoTest.cs: Added test where IsGenericMethod must return false.
  305. 2006-02-03 Zoltan Varga <[email protected]>
  306. * MethodInfoTest.cs: Add tests for IsGenericMethod.
  307. 2006-02-02 Zoltan Varga <[email protected]>
  308. * MethodInfoTest.cs: Add test for Invoke and byref valuetypes.
  309. 2006-01-19 Atsushi Enomoto <[email protected]>
  310. * ModuleTest.cs : ResolveString() does not work under .NET 2.0 either.
  311. 2006-01-06 Raja R Harinath <[email protected]>
  312. * PropertyInfoTest.cs: Use newer nunit API.
  313. (Bug77160): New test from #77160.
  314. 2006-01-03 Zoltan Varga <[email protected]>
  315. * FieldInfoTest.cs PropertyInfoTest.cs MethodInfoTest.cs: Add Nullable
  316. tests.
  317. 2005-12-20 Carlos Alberto Cortez <[email protected]>
  318. * AssemblyTest.cs: Remove 'NotWorking' category attribute
  319. to the Reflection Only tests, since they are working by now.
  320. * FieldInfoTest.cs: Likewise.
  321. * MethodInfoTest.cs: Likewise.
  322. 2005-12-02 Robert Jordan <[email protected]>
  323. * ReflectedTypeTest.cs: New. Test case for #76829.
  324. 2005-11-16 Atsushi Enomoto <[email protected]>
  325. * MethodInfoTest.cs : added MakeGenericMethod test for #76575.
  326. 2005-11-15 Zoltan Varga <[email protected]>
  327. * AssemblyTest.cs: Fix build.
  328. 2005-11-05 Kornél Pál <[email protected]>
  329. * AssemblyTest.cs: Updated runtime version to v2.0.50727 (2.0 RTM).
  330. 2005-10-26 Atsushi Enomoto <[email protected]>
  331. * MethodInfoTest.cs : added test for bug #76541.
  332. 2005-09-26 Carlos Alberto Cortez <[email protected]>
  333. * AssemblyNameTest.cs: Added some tests for the 2.0 new
  334. ctor. Keep some of them as NotWorking, since we need to figure out
  335. an elegant way to avoiding creating Version when not passing it.
  336. 2005-06-30 Ben Maurer <[email protected]>
  337. * AssemblyTest.cs: Relied on the 1.1 test suite being built when
  338. running teh 2.0 test suite, which could cause failures
  339. 2005-06-14 Sebastien Pouliot <[email protected]>
  340. * AssemblyNameCas.cs: Removed execution of AssemblyNameTest.Self as it
  341. is now NotWorking.
  342. 2005-06-13 Sebastien Pouliot <[email protected]>
  343. * AssemblyNameTest.cs: "Fixed" tests so they execute without errors on
  344. both Fx 1.1 SP1 and Fx 2.0 beta 2. Added corresponding NotWorking.
  345. 2005-06-13 Sebastien Pouliot <[email protected]>
  346. * AssemblyNameTest.cs: Added distinctive names for all asserts in
  347. Version. Changed Self to NotWorking as other cases returns null. It
  348. will re-activated once we know the logic behind it.
  349. 2005-06-07 Carlos Alberto Cortez <[email protected]>
  350. * AssemblyNameTest.cs: Added tests to Version method,
  351. in order to do additional checks with AssemblyBuilder
  352. version.
  353. 2005-06-07 Gonzalo Paniagua Javier <[email protected]>
  354. * AssemblyTest.cs: put back GetEntryAssembly, but this one is working.
  355. 2005-06-06 Sebastien Pouliot <[email protected]>
  356. * AssemblyTest.cs: Removed asserts using PortableExecutableKind -
  357. because (1) it was renamed to PortableExecutableKinds *and* (2)
  358. it's documented as obsolete and will be removed for 2.0 RTM.
  359. 2005-06-06 Zoltan Varga <[email protected]>
  360. * MethodInfoTest.cs: Disable pseudo custom attribute test.
  361. 2005-06-05 Gert Driesen <[email protected]>
  362. * AssemblyTest.cs: Enabled test for bug #74958.
  363. 2005-05-27 Zoltan Varga <[email protected]>
  364. * MethodInfoTest.cs: Reenable the pseudo attribute test.
  365. 2005-05-25 Zoltan Varga <[email protected]>
  366. * TypeDelegatorTest.cs: New file.
  367. * MethodInfoTest.cs: Add a test for bug #75029.
  368. 2005-05-20 Gert Driesen <[email protected]>
  369. * AssemblyTest.cs: Allow test for bug #74958 to pass on .NET 2.0
  370. Beta 2.
  371. 2005-05-15 Gert Driesen <[email protected]>
  372. * AssemblyTest.cs: Added (ignored) test case for bug #74958.
  373. 2005-05-07 Ben Maurer <[email protected]>
  374. * EventInfoTest.cs: New file. Has a test case for #64191.
  375. 2005-05-02 Sebastien Pouliot <[email protected]>
  376. * AssemblyTest.cs, FieldInfoTest.cs, MethodInfoTest.cs: Disabled
  377. ReflectionOnly tests as they break every tests afterward. Calberto
  378. is looking for the problem...
  379. 2005-04-28 Sebastien Pouliot <[email protected]>
  380. * AssemblyCas.cs: New. CAS unit tests for Assembly.
  381. 2005-04-27 Sebastien Pouliot <[email protected]>
  382. * AssemblyTest.cs: Updated NET_2_0 tests to check for v2.0.50215
  383. (beta2).
  384. 2005-04-14 Sebastien Pouliot <[email protected]>
  385. * AssemblyTest.cs: Added tests for GetObjectData (null) and
  386. GetReferencedAssemblies (no codebase returned) methods.
  387. 2005-04-08 Raja R Harinath <[email protected]>
  388. * FieldInfoTest.cs (RefOnlyFieldClass): Rename from RefOnlyClass.
  389. * MethodInfoTest.cs (RefOnlyMethodClass): Rename from RefOnlyClass.
  390. 2005-04-08 Carlos Alberto Cortez <[email protected]>
  391. * AssemblyTest.cs: Added tests for ReflectionOnly support.
  392. * MethodInfoTest.cs: Added test for Reflection Only support.
  393. * FieldInfoTest.cs: Added tests for ReflectionOnly support.
  394. 2005-04-04 Sebastien Pouliot <[email protected]>
  395. * AssemblyNameTest.cs: Added tests for Clone and serialization without
  396. a strongname.
  397. * AssemblyNameCas.cs: New. CAS unit tests for AssemblyName.
  398. * StrongNameKeyPairTest.cs: Little changes to make it easier to reuse
  399. in CAS tests.
  400. * StrongNameKeyPairCas.cs: New. CAS unit tests for StrongNameKeyPair.
  401. 2005-04-04 Sebastien Pouliot <[email protected]>
  402. * AssemblyNameTest.cs: Add test for ArgumentNullException on
  403. GetObjectData. Made existing tests more nunit2.2 like.
  404. * ModuleCas.cs: Added new tests for FullyQualifiedName and Name
  405. properties.
  406. * ModuleTest.cs: Add test for ArgumentNullException on GetObjectData.
  407. 2005-03-24 Sebastien Pouliot <[email protected]>
  408. * ModuleCas.cs: New. CAS unit tests for Module.
  409. 2005-03-01 Zoltan Varga <[email protected]>
  410. * MethodInfoTest.cs: Disable code causing mcs to fail.
  411. 2005-01-28 Sebastien Pouliot <[email protected]>
  412. * AssemblyAlgorithmIdAttributeTest.cs: Removed CLSCompliant(false)
  413. attribute as it wasn't required (and gives a compilation warning).
  414. 2005-01-23 Nick Drochak <[email protected]>
  415. * ModuleTest.cs: Long path names gives Windows fits.
  416. 2005-01-19 Zoltan Varga <[email protected]>
  417. * MethodInfoTest.cs: Add tests for GetMethodBody.
  418. 2005-01-16 Nick Drochak <[email protected]>
  419. * AssemblyTest.cs: Try loading assembly from .NET tests and mono tests
  420. 2004-11-05 Zoltan Varga <[email protected]>
  421. * AssemblyTest.cs: Reenable GetFiles (true) test. Add a LoadWithPartialName () test.
  422. * MethodInfoTest.cs: Add test for byref parameters to Invoke ().
  423. 2004-09-26 Zoltan Varga <[email protected]>
  424. * FieldInfoTest.cs: Add tests for MarshalAsAttribute.
  425. * ParameterInfoTest.cs: Add tests for MarshalAsAttribute.
  426. * FieldInfoTest.cs: Add tests for FieldOffsetAttribute.
  427. * FieldInfoTest.cs: New file.
  428. * MethodInfoTest.cs: Add tests for PreserveSigAttribute.
  429. * MethodInfoTest.cs: New file.
  430. 2004-09-25 Zoltan Varga <[email protected]>
  431. * ParameterInfoTest.cs: New file.
  432. 2004-09-22 Zoltan Varga <[email protected]>
  433. * ModuleTest.cs: Add tests for NET 2.0 ResolveXXX methods.
  434. 2004-09-20 Zoltan Varga <[email protected]>
  435. * AssemblyTest.cs: Add tests for MetadataToken and ManifestModule.
  436. 2004-08-29 Nick Drochak <[email protected]>
  437. * BinderTests.cs: Make tests pass on MS.NET 1.1.
  438. 2004-08-09 Sebastien Pouliot <[email protected]>
  439. * AssemblyTest.cs: Added new tests for 1.1 and 2.0 features. Converted
  440. existing tests to NUnit 2.2.
  441. 2004-07-03 Zoltan Varga <[email protected]>
  442. * ModuleTest.cs: New tests for FindTypes.
  443. 2004-06-10 Lluis Sanchez <[email protected]>
  444. * AssemblyNameTest.cs: AssertEqualsByteArrays(): don't crash if arrays are
  445. empty. TestSerialization(): Use AssertEqualsByteArrays to compare keys.
  446. Added messages to the assertions.
  447. 2004-06-09 Gert Driesen <[email protected]>
  448. * AssemblyNameTests.cs: added tests for AssemblyName.FullName
  449. and serialization of AssemblyName, converted tests to use Assert
  450. class
  451. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  452. * BinderTests.cs: added test for null type in the argument list.
  453. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  454. * BinderTests.cs: one more test for matching a single property. Adapted
  455. to nunit 2.2 style.
  456. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  457. * BinderTests.cs: added more indexers and more SelectProperty tests.
  458. 2003-05-20 Sebastien Pouliot <[email protected]>
  459. * StrongNameKeyPairTest.cs: SetUp (renamed) is now public (required
  460. for new nunit).
  461. 2004-05-18 Gert Driesen ([email protected])
  462. * PropertyInfoTest.cs: New file. Added test for
  463. bug #58661.
  464. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  465. * BinderTests.cs: New file.
  466. 2003-04-06 Sebastien Pouliot <[email protected]>
  467. * StrongNameKeyPairTest.cs: Added test case for ECMA "key".
  468. 2003-03-24 Sebastien Pouliot <[email protected]>
  469. * StrongNameKeyPairTest.cs: Converted to NUnit2 format. Removed
  470. unneeded code and false comments (too much copy-n-paste).
  471. 2003-03-09 Jackson Harper <[email protected]>
  472. * AssemblyAlgorithmIdAttributeTest.cs:
  473. * AssemblyConfigurationAttributeTest.cs:
  474. * AssemblyCopyrightAttributeTest.cs:
  475. * AssemblyCultureAttributeTest.cs:
  476. * AssemblyDelaySignAttributeTest.cs:
  477. * AssemblyDescriptionAttributeTest.cs:
  478. * AssemblyFileVersionAttributeTest.cs:
  479. * AssemblyInformationalVersionAttributeTest.cs: New test cases
  480. from [email protected].
  481. 2003-11-24 Zoltan Varga <[email protected]>
  482. * ModuleTest.cs: Make the assembly name unique to fix the GlobalData
  483. test.
  484. 2003-11-17 Zoltan Varga <[email protected]>
  485. * ModuleTest.cs: Fix temp folder path
  486. 2003-10-17 Zoltan Varga <[email protected]>
  487. * AssemblyNameTest.cs: Convert to Nunit2 format, add tests for
  488. CultureInfo, Version and HashAlgorithm properties.
  489. 2003-09-30 Zoltan Varga <[email protected]>
  490. * AssemblyTest.cs (TestGetType): New regression test for #49114.
  491. 2003-05-21 Zoltan Varga <[email protected]>
  492. * ModuleTest.cs: New file.
  493. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  494. * AssemblyTest.cs: New file.
  495. 2002-12-30 Sebastien Pouliot <[email protected]>
  496. * AssemblyNameTest.cs: Added test for FullName (null cultureinfo).
  497. 2002-12-23 Sebastien Pouliot <[email protected]>
  498. * AssemblyNameTest.cs: Added test for non-signed assembly (which
  499. returns an empty array - i.e. not null like an empty assembly).
  500. 2002-12-21 Nick Drochak <[email protected]>
  501. * all: make tests build and run under nunit2
  502. 2002-12-08 Sebastien Pouliot <[email protected]>
  503. * AllTests.cs: Added test suites for AssemblyName and
  504. StrongNameKeyPair.
  505. * AssemblyNameTest.cs: New. Test suite for AssemblyName.
  506. * StrongNameKeyPairTest.cs: New. Test suite for StrongNameKeyPair.