ChangeLog 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. 2005-10-26 Atsushi Enomoto <[email protected]>
  2. * MethodInfoTest.cs : added test for bug #76541.
  3. 2005-09-26 Carlos Alberto Cortez <[email protected]>
  4. * AssemblyNameTest.cs: Added some tests for the 2.0 new
  5. ctor. Keep some of them as NotWorking, since we need to figure out
  6. an elegant way to avoiding creating Version when not passing it.
  7. 2005-06-30 Ben Maurer <[email protected]>
  8. * AssemblyTest.cs: Relied on the 1.1 test suite being built when
  9. running teh 2.0 test suite, which could cause failures
  10. 2005-06-14 Sebastien Pouliot <[email protected]>
  11. * AssemblyNameCas.cs: Removed execution of AssemblyNameTest.Self as it
  12. is now NotWorking.
  13. 2005-06-13 Sebastien Pouliot <[email protected]>
  14. * AssemblyNameTest.cs: "Fixed" tests so they execute without errors on
  15. both Fx 1.1 SP1 and Fx 2.0 beta 2. Added corresponding NotWorking.
  16. 2005-06-13 Sebastien Pouliot <[email protected]>
  17. * AssemblyNameTest.cs: Added distinctive names for all asserts in
  18. Version. Changed Self to NotWorking as other cases returns null. It
  19. will re-activated once we know the logic behind it.
  20. 2005-06-07 Carlos Alberto Cortez <[email protected]>
  21. * AssemblyNameTest.cs: Added tests to Version method,
  22. in order to do additional checks with AssemblyBuilder
  23. version.
  24. 2005-06-07 Gonzalo Paniagua Javier <[email protected]>
  25. * AssemblyTest.cs: put back GetEntryAssembly, but this one is working.
  26. 2005-06-06 Sebastien Pouliot <[email protected]>
  27. * AssemblyTest.cs: Removed asserts using PortableExecutableKind -
  28. because (1) it was renamed to PortableExecutableKinds *and* (2)
  29. it's documented as obsolete and will be removed for 2.0 RTM.
  30. 2005-06-06 Zoltan Varga <[email protected]>
  31. * MethodInfoTest.cs: Disable pseudo custom attribute test.
  32. 2005-06-05 Gert Driesen <[email protected]>
  33. * AssemblyTest.cs: Enabled test for bug #74958.
  34. 2005-05-27 Zoltan Varga <[email protected]>
  35. * MethodInfoTest.cs: Reenable the pseudo attribute test.
  36. 2005-05-25 Zoltan Varga <[email protected]>
  37. * TypeDelegatorTest.cs: New file.
  38. * MethodInfoTest.cs: Add a test for bug #75029.
  39. 2005-05-20 Gert Driesen <[email protected]>
  40. * AssemblyTest.cs: Allow test for bug #74958 to pass on .NET 2.0
  41. Beta 2.
  42. 2005-05-15 Gert Driesen <[email protected]>
  43. * AssemblyTest.cs: Added (ignored) test case for bug #74958.
  44. 2005-05-07 Ben Maurer <[email protected]>
  45. * EventInfoTest.cs: New file. Has a test case for #64191.
  46. 2005-05-02 Sebastien Pouliot <[email protected]>
  47. * AssemblyTest.cs, FieldInfoTest.cs, MethodInfoTest.cs: Disabled
  48. ReflectionOnly tests as they break every tests afterward. Calberto
  49. is looking for the problem...
  50. 2005-04-28 Sebastien Pouliot <[email protected]>
  51. * AssemblyCas.cs: New. CAS unit tests for Assembly.
  52. 2005-04-27 Sebastien Pouliot <[email protected]>
  53. * AssemblyTest.cs: Updated NET_2_0 tests to check for v2.0.50215
  54. (beta2).
  55. 2005-04-14 Sebastien Pouliot <[email protected]>
  56. * AssemblyTest.cs: Added tests for GetObjectData (null) and
  57. GetReferencedAssemblies (no codebase returned) methods.
  58. 2005-04-08 Raja R Harinath <[email protected]>
  59. * FieldInfoTest.cs (RefOnlyFieldClass): Rename from RefOnlyClass.
  60. * MethodInfoTest.cs (RefOnlyMethodClass): Rename from RefOnlyClass.
  61. 2005-04-08 Carlos Alberto Cortez <[email protected]>
  62. * AssemblyTest.cs: Added tests for ReflectionOnly support.
  63. * MethodInfoTest.cs: Added test for Reflection Only support.
  64. * FieldInfoTest.cs: Added tests for ReflectionOnly support.
  65. 2005-04-04 Sebastien Pouliot <[email protected]>
  66. * AssemblyNameTest.cs: Added tests for Clone and serialization without
  67. a strongname.
  68. * AssemblyNameCas.cs: New. CAS unit tests for AssemblyName.
  69. * StrongNameKeyPairTest.cs: Little changes to make it easier to reuse
  70. in CAS tests.
  71. * StrongNameKeyPairCas.cs: New. CAS unit tests for StrongNameKeyPair.
  72. 2005-04-04 Sebastien Pouliot <[email protected]>
  73. * AssemblyNameTest.cs: Add test for ArgumentNullException on
  74. GetObjectData. Made existing tests more nunit2.2 like.
  75. * ModuleCas.cs: Added new tests for FullyQualifiedName and Name
  76. properties.
  77. * ModuleTest.cs: Add test for ArgumentNullException on GetObjectData.
  78. 2005-03-24 Sebastien Pouliot <[email protected]>
  79. * ModuleCas.cs: New. CAS unit tests for Module.
  80. 2005-03-01 Zoltan Varga <[email protected]>
  81. * MethodInfoTest.cs: Disable code causing mcs to fail.
  82. 2005-01-28 Sebastien Pouliot <[email protected]>
  83. * AssemblyAlgorithmIdAttributeTest.cs: Removed CLSCompliant(false)
  84. attribute as it wasn't required (and gives a compilation warning).
  85. 2005-01-23 Nick Drochak <[email protected]>
  86. * ModuleTest.cs: Long path names gives Windows fits.
  87. 2005-01-19 Zoltan Varga <[email protected]>
  88. * MethodInfoTest.cs: Add tests for GetMethodBody.
  89. 2005-01-16 Nick Drochak <[email protected]>
  90. * AssemblyTest.cs: Try loading assembly from .NET tests and mono tests
  91. 2004-11-05 Zoltan Varga <[email protected]>
  92. * AssemblyTest.cs: Reenable GetFiles (true) test. Add a LoadWithPartialName () test.
  93. * MethodInfoTest.cs: Add test for byref parameters to Invoke ().
  94. 2004-09-26 Zoltan Varga <[email protected]>
  95. * FieldInfoTest.cs: Add tests for MarshalAsAttribute.
  96. * ParameterInfoTest.cs: Add tests for MarshalAsAttribute.
  97. * FieldInfoTest.cs: Add tests for FieldOffsetAttribute.
  98. * FieldInfoTest.cs: New file.
  99. * MethodInfoTest.cs: Add tests for PreserveSigAttribute.
  100. * MethodInfoTest.cs: New file.
  101. 2004-09-25 Zoltan Varga <[email protected]>
  102. * ParameterInfoTest.cs: New file.
  103. 2004-09-22 Zoltan Varga <[email protected]>
  104. * ModuleTest.cs: Add tests for NET 2.0 ResolveXXX methods.
  105. 2004-09-20 Zoltan Varga <[email protected]>
  106. * AssemblyTest.cs: Add tests for MetadataToken and ManifestModule.
  107. 2004-08-29 Nick Drochak <[email protected]>
  108. * BinderTests.cs: Make tests pass on MS.NET 1.1.
  109. 2004-08-09 Sebastien Pouliot <[email protected]>
  110. * AssemblyTest.cs: Added new tests for 1.1 and 2.0 features. Converted
  111. existing tests to NUnit 2.2.
  112. 2004-07-03 Zoltan Varga <[email protected]>
  113. * ModuleTest.cs: New tests for FindTypes.
  114. 2004-06-10 Lluis Sanchez <[email protected]>
  115. * AssemblyNameTest.cs: AssertEqualsByteArrays(): don't crash if arrays are
  116. empty. TestSerialization(): Use AssertEqualsByteArrays to compare keys.
  117. Added messages to the assertions.
  118. 2004-06-09 Gert Driesen <[email protected]>
  119. * AssemblyNameTests.cs: added tests for AssemblyName.FullName
  120. and serialization of AssemblyName, converted tests to use Assert
  121. class
  122. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  123. * BinderTests.cs: added test for null type in the argument list.
  124. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  125. * BinderTests.cs: one more test for matching a single property. Adapted
  126. to nunit 2.2 style.
  127. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  128. * BinderTests.cs: added more indexers and more SelectProperty tests.
  129. 2003-05-20 Sebastien Pouliot <[email protected]>
  130. * StrongNameKeyPairTest.cs: SetUp (renamed) is now public (required
  131. for new nunit).
  132. 2004-05-18 Gert Driesen ([email protected])
  133. * PropertyInfoTest.cs: New file. Added test for
  134. bug #58661.
  135. 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
  136. * BinderTests.cs: New file.
  137. 2003-04-06 Sebastien Pouliot <[email protected]>
  138. * StrongNameKeyPairTest.cs: Added test case for ECMA "key".
  139. 2003-03-24 Sebastien Pouliot <[email protected]>
  140. * StrongNameKeyPairTest.cs: Converted to NUnit2 format. Removed
  141. unneeded code and false comments (too much copy-n-paste).
  142. 2003-03-09 Jackson Harper <[email protected]>
  143. * AssemblyAlgorithmIdAttributeTest.cs:
  144. * AssemblyConfigurationAttributeTest.cs:
  145. * AssemblyCopyrightAttributeTest.cs:
  146. * AssemblyCultureAttributeTest.cs:
  147. * AssemblyDelaySignAttributeTest.cs:
  148. * AssemblyDescriptionAttributeTest.cs:
  149. * AssemblyFileVersionAttributeTest.cs:
  150. * AssemblyInformationalVersionAttributeTest.cs: New test cases
  151. from [email protected].
  152. 2003-11-24 Zoltan Varga <[email protected]>
  153. * ModuleTest.cs: Make the assembly name unique to fix the GlobalData
  154. test.
  155. 2003-11-17 Zoltan Varga <[email protected]>
  156. * ModuleTest.cs: Fix temp folder path
  157. 2003-10-17 Zoltan Varga <[email protected]>
  158. * AssemblyNameTest.cs: Convert to Nunit2 format, add tests for
  159. CultureInfo, Version and HashAlgorithm properties.
  160. 2003-09-30 Zoltan Varga <[email protected]>
  161. * AssemblyTest.cs (TestGetType): New regression test for #49114.
  162. 2003-05-21 Zoltan Varga <[email protected]>
  163. * ModuleTest.cs: New file.
  164. 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
  165. * AssemblyTest.cs: New file.
  166. 2002-12-30 Sebastien Pouliot <[email protected]>
  167. * AssemblyNameTest.cs: Added test for FullName (null cultureinfo).
  168. 2002-12-23 Sebastien Pouliot <[email protected]>
  169. * AssemblyNameTest.cs: Added test for non-signed assembly (which
  170. returns an empty array - i.e. not null like an empty assembly).
  171. 2002-12-21 Nick Drochak <[email protected]>
  172. * all: make tests build and run under nunit2
  173. 2002-12-08 Sebastien Pouliot <[email protected]>
  174. * AllTests.cs: Added test suites for AssemblyName and
  175. StrongNameKeyPair.
  176. * AssemblyNameTest.cs: New. Test suite for AssemblyName.
  177. * StrongNameKeyPairTest.cs: New. Test suite for StrongNameKeyPair.