ChangeLog 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. 2008-02-02 Gert Driesen <[email protected]>
  2. * MethodInfoTest.cs: Numbered tests. Improved existing tests.
  3. * ParameterInfoTest.cs: Added test for bug #342536.
  4. 2008-01-30 Zoltan Varga <[email protected]>
  5. * AssemblyTest.cs (GetModules_MissingFile): Rename the generated assembly to
  6. avoid name clashes.
  7. * AssemblyTest.cs: Add a test for GetModules () and a missing module.
  8. * ModuleTest.cs: Add a test for GetTypes ().
  9. 2008-01-20 Gert Driesen <[email protected]>
  10. * AssemblyNameTest.cs: Added test for effect of AssemblyNameFlags on
  11. FullName. Added test for PublicKey with value "null". Added ctor test
  12. for Retargetable spec.
  13. 2008-01-15 Jb Evain <[email protected]>
  14. * MethodInfoTest.cs: Add test for null arguments to
  15. MakeGenericMethod (#353849).
  16. 2008-01-06 Gert Driesen <[email protected]>
  17. * AssemblyNameTest.cs: Improved tests for ProcessorArchictecture.
  18. 2007-12-31 Gert Driesen <[email protected]>
  19. * AssemblyNameCas.cs: Sync test methods with AssemblyNameTest.cs.
  20. * AssemblyNameTest.cs: Removed AssertEqualsByteArrays method since
  21. NUnit supports this out-of-the-box. Use more meaningful names for
  22. some existing tests. Improved existing tests and added lots more.
  23. Enabled tests that were previously failing. Fixed and improved
  24. tests for public key; the original "public key" was actually a
  25. key pair.
  26. 2007-12-28 Gert Driesen <[email protected]>
  27. * AssemblyNameTest.cs: Improved culture test to cover bug #347174.
  28. 2007-12-05 Zoltan Varga <[email protected]>
  29. * FieldInfoTest.cs: Add tests for #346160.
  30. 2007-12-03 Zoltan Varga <[email protected]>
  31. * FieldInfoTest.cs: Add GetRawDefaultValue () tests.
  32. 2007-11-05 Mark Probst <[email protected]>
  33. * BinderTests.cs: Add test for bug #324998.
  34. 2007-11-04 Miguel de Icaza <[email protected]>
  35. * ParameterInfoTest.cs: Add new test for testing the [Optional]
  36. attribute making ParameterInfo.DefaultValue become
  37. System.Reflection.Missing.
  38. 2007-11-01 Zoltan Varga <[email protected]>
  39. * BinderTests.cs: Add a test for the ParamArray attribute.
  40. 2007-10-17 Gert Driesen <[email protected]>
  41. * AssemblyTest.cs: Enabled test for bug #334204.
  42. 2007-10-16 Gert Driesen <[email protected]>
  43. * AssemblyTest.cs: Added test for bug #334203. Use more meaningful name
  44. for test for bug #49114.
  45. 2007-10-04 Raja R Harinath <[email protected]>
  46. * AssemblyTest.cs (bug328812): New test.
  47. 2007-09-25 Zoltan Varga <[email protected]>
  48. * PropertyInfoTest.cs: Add test for calling ReflectedType on accessors.
  49. 2007-09-23 Gert Driesen <[email protected]>
  50. * AssemblyTest.cs: Added test for ManifestModule.
  51. 2007-09-17 Gert Driesen <[email protected]>
  52. * AssemblyTest.cs: Added test for GetManifestResourceStream argument
  53. checks.
  54. 2007-08-17 Gert Driesen <[email protected]>
  55. * FieldInfoTest.cs: Enabled test for bug #82465.
  56. 2007-08-17 Gert Driesen <[email protected]>
  57. * ModuleTest.cs: Enabled tests on 2.0 profile since bug #82459 is
  58. fixed.
  59. 2007-08-17 Gert Driesen <[email protected]>
  60. * ParameterInfoTest.cs: Minor code formatting change.
  61. * FieldInfoTest.cs: Added test for GetCustomAttributes. Modified test
  62. for pseudo customattributes to work on 1.0 profile too.
  63. 2007-08-16 Gert Driesen <[email protected]>
  64. * AssemblyTest.cs: Added IsDefined test with null value for
  65. attributeType argument.
  66. * ModuleTest.cs: Same. Remove use of deprecated Assertion class, code
  67. formatting and fixed line endings.
  68. * ParameterInfoTest.cs: Same. Remove use of deprecated Assertion class
  69. and code formatting.
  70. * MethodInfoTest.cs: Same.
  71. * EventInfoTest.cs: Same. Code formatting.
  72. * FieldInfoTest.cs: Same. Code formatting.
  73. * PropertyInfoTest.cs: Same. Improved coverage of GetAccessors.
  74. Improved tests for GetCustomAttributes. Code formatting.
  75. 2007-08-03 Zoltan Varga <[email protected]>
  76. * MethodInfoTest.cs: Add another test.
  77. * MethodInfoTest.cs: Add test for Invoking methods with a nullable type receiver.
  78. 2007-07-20 Gert Driesen <[email protected]>
  79. * MethodInfoTest.cs: Added GetMethodFromHandle test for generic type.
  80. 2007-07-20 Raja R Harinath <[email protected]>
  81. * MethodInfoTest.cs (GetGenericMethodDefinition): New. Based on
  82. Atsushi's testcase in #78068.
  83. 2007-07-19 Atsushi Enomoto <[email protected]>
  84. * MethodInfoTest.cs : fix incorrect parameter type output.
  85. 2007-07-19 Atsushi Enomoto <[email protected]>
  86. * MethodInfoTest.cs : added ToString() test for generic return type.
  87. 2007-07-09 Mark Probst <[email protected]>
  88. * AssemblyTest.cs: Enabled test for bug 78465.
  89. 2007-07-05 Gert Driesen <[email protected]>
  90. * MethodInfoTest.cs: Added test for bug #81997. Code formatting.
  91. 2007-06-22 Raja R Harinath <[email protected]>
  92. * MethodInfoTest.cs (IsGenericMethodDefinition): New.
  93. 2007-06-02 Zoltan Varga <[email protected]>
  94. * PropertyInfoTest.cs: Mark new test as NotWorking.
  95. * PropertyInfoTest.cs: Added new test.
  96. 2007-05-07 Gert Driesen <[email protected]>
  97. * MethodInfoTest.cs: Modified test for bug #81538 to verify both
  98. 1.0 and 2.0 behavior.
  99. 2007-05-07 Zoltan Varga <[email protected]>
  100. * MethodInfoTest.cs: Add test case for #81538.
  101. 2007-05-01 Gert Driesen <[email protected]>
  102. * ConstructorInfoTest.cs: Added tests for Invoke.
  103. 2007-05-01 Zoltan Varga <[email protected]>
  104. * MethodInfoTest.cs: Reenable a NotWorking test which is working now.
  105. 2007-03-14 Eyal Alaluf <[email protected]>
  106. * MethodInfoTest.cs: Disabled tests for TARGET_JVM that use MethodBody.
  107. 2006-11-14 Raja R Harinath <[email protected]>
  108. * AssemblyTest.cs (bug79872): New test for #79872.
  109. 2006-10-22 Gert Driesen <[email protected]>
  110. * AssemblyTest.cs: Added tests for bug #79712 and #79715. All marked
  111. NotWorking.
  112. 2006-10-19 Gert Driesen <[email protected]>
  113. * AssemblyNameTest.cs: Added test for CodeBase of AssemblyName
  114. filled by AssemblyName.GetAssemblyName. Added tests for bug #79661.
  115. 2006-09-29 Jb Evain <[email protected]>
  116. * FieldInfoTest.cs: Test for FieldInfo.SetValue on a literal field.
  117. 2006-09-06 Zoltan Varga <[email protected]>
  118. * ParameterInfoTest.cs: Add a test for enum default parameter values.
  119. 2006-09-02 Zoltan Varga <[email protected]>
  120. * MethodInfoTest.cs: Add a test for the ReturnParameter property.
  121. 2006-08-08 Gert Driesen <[email protected]>
  122. * AssemblyTest.cs: Modified test to pass on 2.0 profile and .NET 2.0.
  123. 2006-07-12 Zoltan Varga <[email protected]>
  124. * MethodInfoTest.cs: Add tests for ContainsGenericParameters ().
  125. 2006-07-09 Gert Driesen <[email protected]>
  126. * AssemblyTest.cs: Enabled test for bug #78468.
  127. 2006-07-01 Zoltan Varga <[email protected]>
  128. * MethodInfoTest.cs: Add a test for #77888.
  129. 2006-06-29 Raja R Harinath <[email protected]>
  130. * MethodInfoTest.cs (GetBaseDefinition): New test for
  131. MethodInfo.GetBaseDefinition.
  132. 2006-06-07 Zoltan Varga <[email protected]>
  133. * BinderTests.cs: Add test for BindingFlags.ExactBinding.
  134. 2006-05-28 Gert Driesen <[email protected]>
  135. * MethodInfoTest.cs: No longer derive from (deprecated) Assertion.
  136. Number individual asserts. Marked ByrefVtypeInvoke as NotDotNet for
  137. NET_1_1 profile, due to bug in MS.NET 1.1.
  138. 2006-05-28 Gert Driesen <[email protected]>
  139. * MethodInfoTest.cs: GetMethodBody no longer throws ArgumentException
  140. for methods that have no IL body. Part of fix for bug #78522.
  141. 2006-05-28 Gert Driesen <[email protected]>
  142. * AssemblyTest.cs: Added tests for bug #78517.
  143. 2006-05-20 Gert Driesen <[email protected]>
  144. * AssemblyTest.cs: Added tests for bugs #78464, #78465 and #78468.
  145. Spaces to tabs.
  146. 2006-05-09 Atsushi Enomoto <[email protected]>
  147. * BinderTests.cs : (BindToMethodNamedArgs) hmm, why it didn't
  148. show up during my last test run...
  149. 2006-05-08 Atsushi Enomoto <[email protected]>
  150. * BinderTests.cs : added test for bug #77079.
  151. 2006-05-08 Atsushi Enomoto <[email protected]>
  152. * BinderTests.cs : added test for bug #42547.
  153. 2006-05-08 Atsushi Enomoto <[email protected]>
  154. * BinderTests.cs : added test for bug #41691.
  155. 2006-03-09 Zoltan Varga <[email protected]>
  156. * MethodInfoTest.cs: Add test for #77668.
  157. 2006-02-11 Zoltan Varga <[email protected]>
  158. * FieldInfoTest.cs: Revert nullable reftype tests.
  159. 2006-02-09 Zoltan Varga <[email protected]>
  160. * FieldInfoTest.cs: Add tests for nullable reference types.
  161. 2006-02-07 Martin Baulig <[email protected]>
  162. * MethodInfoTest.cs: Added test where IsGenericMethod must return false.
  163. 2006-02-03 Zoltan Varga <[email protected]>
  164. * MethodInfoTest.cs: Add tests for IsGenericMethod.
  165. 2006-02-02 Zoltan Varga <[email protected]>
  166. * MethodInfoTest.cs: Add test for Invoke and byref valuetypes.
  167. 2006-01-19 Atsushi Enomoto <[email protected]>
  168. * ModuleTest.cs : ResolveString() does not work under .NET 2.0 either.
  169. 2006-01-06 Raja R Harinath <[email protected]>
  170. * PropertyInfoTest.cs: Use newer nunit API.
  171. (Bug77160): New test from #77160.
  172. 2006-01-03 Zoltan Varga <[email protected]>
  173. * FieldInfoTest.cs PropertyInfoTest.cs MethodInfoTest.cs: Add Nullable
  174. tests.
  175. 2005-12-20 Carlos Alberto Cortez <[email protected]>
  176. * AssemblyTest.cs: Remove 'NotWorking' category attribute
  177. to the Reflection Only tests, since they are working by now.
  178. * FieldInfoTest.cs: Likewise.
  179. * MethodInfoTest.cs: Likewise.
  180. 2005-12-02 Robert Jordan <[email protected]>
  181. * ReflectedTypeTest.cs: New. Test case for #76829.
  182. 2005-11-16 Atsushi Enomoto <[email protected]>
  183. * MethodInfoTest.cs : added MakeGenericMethod test for #76575.
  184. 2005-11-15 Zoltan Varga <[email protected]>
  185. * AssemblyTest.cs: Fix build.
  186. 2005-11-05 Kornél Pál <[email protected]>
  187. * AssemblyTest.cs: Updated runtime version to v2.0.50727 (2.0 RTM).
  188. 2005-10-26 Atsushi Enomoto <[email protected]>
  189. * MethodInfoTest.cs : added test for bug #76541.
  190. 2005-09-26 Carlos Alberto Cortez <[email protected]>
  191. * AssemblyNameTest.cs: Added some tests for the 2.0 new
  192. ctor. Keep some of them as NotWorking, since we need to figure out
  193. an elegant way to avoiding creating Version when not passing it.
  194. 2005-06-30 Ben Maurer <[email protected]>
  195. * AssemblyTest.cs: Relied on the 1.1 test suite being built when
  196. running teh 2.0 test suite, which could cause failures
  197. 2005-06-14 Sebastien Pouliot <[email protected]>
  198. * AssemblyNameCas.cs: Removed execution of AssemblyNameTest.Self as it
  199. is now NotWorking.
  200. 2005-06-13 Sebastien Pouliot <[email protected]>
  201. * AssemblyNameTest.cs: "Fixed" tests so they execute without errors on
  202. both Fx 1.1 SP1 and Fx 2.0 beta 2. Added corresponding NotWorking.
  203. 2005-06-13 Sebastien Pouliot <[email protected]>
  204. * AssemblyNameTest.cs: Added distinctive names for all asserts in
  205. Version. Changed Self to NotWorking as other cases returns null. It
  206. will re-activated once we know the logic behind it.
  207. 2005-06-07 Carlos Alberto Cortez <[email protected]>
  208. * AssemblyNameTest.cs: Added tests to Version method,
  209. in order to do additional checks with AssemblyBuilder
  210. version.
  211. 2005-06-07 Gonzalo Paniagua Javier <[email protected]>
  212. * AssemblyTest.cs: put back GetEntryAssembly, but this one is working.
  213. 2005-06-06 Sebastien Pouliot <[email protected]>
  214. * AssemblyTest.cs: Removed asserts using PortableExecutableKind -
  215. because (1) it was renamed to PortableExecutableKinds *and* (2)
  216. it's documented as obsolete and will be removed for 2.0 RTM.
  217. 2005-06-06 Zoltan Varga <[email protected]>
  218. * MethodInfoTest.cs: Disable pseudo custom attribute test.
  219. 2005-06-05 Gert Driesen <[email protected]>
  220. * AssemblyTest.cs: Enabled test for bug #74958.
  221. 2005-05-27 Zoltan Varga <[email protected]>
  222. * MethodInfoTest.cs: Reenable the pseudo attribute test.
  223. 2005-05-25 Zoltan Varga <[email protected]>
  224. * TypeDelegatorTest.cs: New file.
  225. * MethodInfoTest.cs: Add a test for bug #75029.
  226. 2005-05-20 Gert Driesen <[email protected]>
  227. * AssemblyTest.cs: Allow test for bug #74958 to pass on .NET 2.0
  228. Beta 2.
  229. 2005-05-15 Gert Driesen <[email protected]>
  230. * AssemblyTest.cs: Added (ignored) test case for bug #74958.
  231. 2005-05-07 Ben Maurer <[email protected]>
  232. * EventInfoTest.cs: New file. Has a test case for #64191.
  233. 2005-05-02 Sebastien Pouliot <[email protected]>
  234. * AssemblyTest.cs, FieldInfoTest.cs, MethodInfoTest.cs: Disabled
  235. ReflectionOnly tests as they break every tests afterward. Calberto
  236. is looking for the problem...
  237. 2005-04-28 Sebastien Pouliot <[email protected]>
  238. * AssemblyCas.cs: New. CAS unit tests for Assembly.
  239. 2005-04-27 Sebastien Pouliot <[email protected]>
  240. * AssemblyTest.cs: Updated NET_2_0 tests to check for v2.0.50215
  241. (beta2).
  242. 2005-04-14 Sebastien Pouliot <[email protected]>
  243. * AssemblyTest.cs: Added tests for GetObjectData (null) and
  244. GetReferencedAssemblies (no codebase returned) methods.
  245. 2005-04-08 Raja R Harinath <[email protected]>
  246. * FieldInfoTest.cs (RefOnlyFieldClass): Rename from RefOnlyClass.
  247. * MethodInfoTest.cs (RefOnlyMethodClass): Rename from RefOnlyClass.
  248. 2005-04-08 Carlos Alberto Cortez <[email protected]>
  249. * AssemblyTest.cs: Added tests for ReflectionOnly support.
  250. * MethodInfoTest.cs: Added test for Reflection Only support.
  251. * FieldInfoTest.cs: Added tests for ReflectionOnly support.
  252. 2005-04-04 Sebastien Pouliot <[email protected]>
  253. * AssemblyNameTest.cs: Added tests for Clone and serialization without
  254. a strongname.
  255. * AssemblyNameCas.cs: New. CAS unit tests for AssemblyName.
  256. * StrongNameKeyPairTest.cs: Little changes to make it easier to reuse
  257. in CAS tests.
  258. * StrongNameKeyPairCas.cs: New. CAS unit tests for StrongNameKeyPair.
  259. 2005-04-04 Sebastien Pouliot <[email protected]>
  260. * AssemblyNameTest.cs: Add test for ArgumentNullException on
  261. GetObjectData. Made existing tests more nunit2.2 like.
  262. * ModuleCas.cs: Added new tests for FullyQualifiedName and Name
  263. properties.
  264. * ModuleTest.cs: Add test for ArgumentNullException on GetObjectData.
  265. 2005-03-24 Sebastien Pouliot <[email protected]>
  266. * ModuleCas.cs: New. CAS unit tests for Module.
  267. 2005-03-01 Zoltan Varga <[email protected]>
  268. * MethodInfoTest.cs: Disable code causing mcs to fail.
  269. 2005-01-28 Sebastien Pouliot <[email protected]>
  270. * AssemblyAlgorithmIdAttributeTest.cs: Removed CLSCompliant(false)
  271. attribute as it wasn't required (and gives a compilation warning).
  272. 2005-01-23 Nick Drochak <[email protected]>
  273. * ModuleTest.cs: Long path names gives Windows fits.
  274. 2005-01-19 Zoltan Varga <[email protected]>
  275. * MethodInfoTest.cs: Add tests for GetMethodBody.
  276. 2005-01-16 Nick Drochak <[email protected]>
  277. * AssemblyTest.cs: Try loading assembly from .NET tests and mono tests
  278. 2004-11-05 Zoltan Varga <[email protected]>
  279. * AssemblyTest.cs: Reenable GetFiles (true) test. Add a LoadWithPartialName () test.
  280. * MethodInfoTest.cs: Add test for byref parameters to Invoke ().
  281. 2004-09-26 Zoltan Varga <[email protected]>
  282. * FieldInfoTest.cs: Add tests for MarshalAsAttribute.
  283. * ParameterInfoTest.cs: Add tests for MarshalAsAttribute.
  284. * FieldInfoTest.cs: Add tests for FieldOffsetAttribute.
  285. * FieldInfoTest.cs: New file.
  286. * MethodInfoTest.cs: Add tests for PreserveSigAttribute.
  287. * MethodInfoTest.cs: New file.
  288. 2004-09-25 Zoltan Varga <[email protected]>
  289. * ParameterInfoTest.cs: New file.
  290. 2004-09-22 Zoltan Varga <[email protected]>
  291. * ModuleTest.cs: Add tests for NET 2.0 ResolveXXX methods.
  292. 2004-09-20 Zoltan Varga <[email protected]>
  293. * AssemblyTest.cs: Add tests for MetadataToken and ManifestModule.
  294. 2004-08-29 Nick Drochak <[email protected]>
  295. * BinderTests.cs: Make tests pass on MS.NET 1.1.
  296. 2004-08-09 Sebastien Pouliot <[email protected]>
  297. * AssemblyTest.cs: Added new tests for 1.1 and 2.0 features. Converted
  298. existing tests to NUnit 2.2.
  299. 2004-07-03 Zoltan Varga <[email protected]>
  300. * ModuleTest.cs: New tests for FindTypes.
  301. 2004-06-10 Lluis Sanchez <[email protected]>
  302. * AssemblyNameTest.cs: AssertEqualsByteArrays(): don't crash if arrays are
  303. empty. TestSerialization(): Use AssertEqualsByteArrays to compare keys.
  304. Added messages to the assertions.
  305. 2004-06-09 Gert Driesen <[email protected]>
  306. * AssemblyNameTests.cs: added tests for AssemblyName.FullName
  307. and serialization of AssemblyName, converted tests to use Assert
  308. class
  309. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  310. * BinderTests.cs: added test for null type in the argument list.
  311. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  312. * BinderTests.cs: one more test for matching a single property. Adapted
  313. to nunit 2.2 style.
  314. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  315. * BinderTests.cs: added more indexers and more SelectProperty tests.
  316. 2003-05-20 Sebastien Pouliot <[email protected]>
  317. * StrongNameKeyPairTest.cs: SetUp (renamed) is now public (required
  318. for new nunit).
  319. 2004-05-18 Gert Driesen ([email protected])
  320. * PropertyInfoTest.cs: New file. Added test for
  321. bug #58661.
  322. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  323. * BinderTests.cs: New file.
  324. 2003-04-06 Sebastien Pouliot <[email protected]>
  325. * StrongNameKeyPairTest.cs: Added test case for ECMA "key".
  326. 2003-03-24 Sebastien Pouliot <[email protected]>
  327. * StrongNameKeyPairTest.cs: Converted to NUnit2 format. Removed
  328. unneeded code and false comments (too much copy-n-paste).
  329. 2003-03-09 Jackson Harper <[email protected]>
  330. * AssemblyAlgorithmIdAttributeTest.cs:
  331. * AssemblyConfigurationAttributeTest.cs:
  332. * AssemblyCopyrightAttributeTest.cs:
  333. * AssemblyCultureAttributeTest.cs:
  334. * AssemblyDelaySignAttributeTest.cs:
  335. * AssemblyDescriptionAttributeTest.cs:
  336. * AssemblyFileVersionAttributeTest.cs:
  337. * AssemblyInformationalVersionAttributeTest.cs: New test cases
  338. from [email protected].
  339. 2003-11-24 Zoltan Varga <[email protected]>
  340. * ModuleTest.cs: Make the assembly name unique to fix the GlobalData
  341. test.
  342. 2003-11-17 Zoltan Varga <[email protected]>
  343. * ModuleTest.cs: Fix temp folder path
  344. 2003-10-17 Zoltan Varga <[email protected]>
  345. * AssemblyNameTest.cs: Convert to Nunit2 format, add tests for
  346. CultureInfo, Version and HashAlgorithm properties.
  347. 2003-09-30 Zoltan Varga <[email protected]>
  348. * AssemblyTest.cs (TestGetType): New regression test for #49114.
  349. 2003-05-21 Zoltan Varga <[email protected]>
  350. * ModuleTest.cs: New file.
  351. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  352. * AssemblyTest.cs: New file.
  353. 2002-12-30 Sebastien Pouliot <[email protected]>
  354. * AssemblyNameTest.cs: Added test for FullName (null cultureinfo).
  355. 2002-12-23 Sebastien Pouliot <[email protected]>
  356. * AssemblyNameTest.cs: Added test for non-signed assembly (which
  357. returns an empty array - i.e. not null like an empty assembly).
  358. 2002-12-21 Nick Drochak <[email protected]>
  359. * all: make tests build and run under nunit2
  360. 2002-12-08 Sebastien Pouliot <[email protected]>
  361. * AllTests.cs: Added test suites for AssemblyName and
  362. StrongNameKeyPair.
  363. * AssemblyNameTest.cs: New. Test suite for AssemblyName.
  364. * StrongNameKeyPairTest.cs: New. Test suite for StrongNameKeyPair.