| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634 |
- 2008-02-02 Gert Driesen <[email protected]>
- * MethodInfoTest.cs: Numbered tests. Improved existing tests.
- * ParameterInfoTest.cs: Added test for bug #342536.
- 2008-01-30 Zoltan Varga <[email protected]>
- * AssemblyTest.cs (GetModules_MissingFile): Rename the generated assembly to
- avoid name clashes.
-
- * AssemblyTest.cs: Add a test for GetModules () and a missing module.
- * ModuleTest.cs: Add a test for GetTypes ().
- 2008-01-20 Gert Driesen <[email protected]>
- * AssemblyNameTest.cs: Added test for effect of AssemblyNameFlags on
- FullName. Added test for PublicKey with value "null". Added ctor test
- for Retargetable spec.
- 2008-01-15 Jb Evain <[email protected]>
- * MethodInfoTest.cs: Add test for null arguments to
- MakeGenericMethod (#353849).
- 2008-01-06 Gert Driesen <[email protected]>
- * AssemblyNameTest.cs: Improved tests for ProcessorArchictecture.
- 2007-12-31 Gert Driesen <[email protected]>
- * AssemblyNameCas.cs: Sync test methods with AssemblyNameTest.cs.
- * AssemblyNameTest.cs: Removed AssertEqualsByteArrays method since
- NUnit supports this out-of-the-box. Use more meaningful names for
- some existing tests. Improved existing tests and added lots more.
- Enabled tests that were previously failing. Fixed and improved
- tests for public key; the original "public key" was actually a
- key pair.
- 2007-12-28 Gert Driesen <[email protected]>
- * AssemblyNameTest.cs: Improved culture test to cover bug #347174.
- 2007-12-05 Zoltan Varga <[email protected]>
- * FieldInfoTest.cs: Add tests for #346160.
- 2007-12-03 Zoltan Varga <[email protected]>
- * FieldInfoTest.cs: Add GetRawDefaultValue () tests.
- 2007-11-05 Mark Probst <[email protected]>
- * BinderTests.cs: Add test for bug #324998.
- 2007-11-04 Miguel de Icaza <[email protected]>
- * ParameterInfoTest.cs: Add new test for testing the [Optional]
- attribute making ParameterInfo.DefaultValue become
- System.Reflection.Missing.
- 2007-11-01 Zoltan Varga <[email protected]>
- * BinderTests.cs: Add a test for the ParamArray attribute.
- 2007-10-17 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Enabled test for bug #334204.
- 2007-10-16 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added test for bug #334203. Use more meaningful name
- for test for bug #49114.
- 2007-10-04 Raja R Harinath <[email protected]>
- * AssemblyTest.cs (bug328812): New test.
- 2007-09-25 Zoltan Varga <[email protected]>
- * PropertyInfoTest.cs: Add test for calling ReflectedType on accessors.
- 2007-09-23 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added test for ManifestModule.
- 2007-09-17 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added test for GetManifestResourceStream argument
- checks.
- 2007-08-17 Gert Driesen <[email protected]>
- * FieldInfoTest.cs: Enabled test for bug #82465.
- 2007-08-17 Gert Driesen <[email protected]>
- * ModuleTest.cs: Enabled tests on 2.0 profile since bug #82459 is
- fixed.
- 2007-08-17 Gert Driesen <[email protected]>
- * ParameterInfoTest.cs: Minor code formatting change.
- * FieldInfoTest.cs: Added test for GetCustomAttributes. Modified test
- for pseudo customattributes to work on 1.0 profile too.
- 2007-08-16 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added IsDefined test with null value for
- attributeType argument.
- * ModuleTest.cs: Same. Remove use of deprecated Assertion class, code
- formatting and fixed line endings.
- * ParameterInfoTest.cs: Same. Remove use of deprecated Assertion class
- and code formatting.
- * MethodInfoTest.cs: Same.
- * EventInfoTest.cs: Same. Code formatting.
- * FieldInfoTest.cs: Same. Code formatting.
- * PropertyInfoTest.cs: Same. Improved coverage of GetAccessors.
- Improved tests for GetCustomAttributes. Code formatting.
- 2007-08-03 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add another test.
-
- * MethodInfoTest.cs: Add test for Invoking methods with a nullable type receiver.
- 2007-07-20 Gert Driesen <[email protected]>
- * MethodInfoTest.cs: Added GetMethodFromHandle test for generic type.
- 2007-07-20 Raja R Harinath <[email protected]>
- * MethodInfoTest.cs (GetGenericMethodDefinition): New. Based on
- Atsushi's testcase in #78068.
- 2007-07-19 Atsushi Enomoto <[email protected]>
- * MethodInfoTest.cs : fix incorrect parameter type output.
- 2007-07-19 Atsushi Enomoto <[email protected]>
- * MethodInfoTest.cs : added ToString() test for generic return type.
- 2007-07-09 Mark Probst <[email protected]>
- * AssemblyTest.cs: Enabled test for bug 78465.
- 2007-07-05 Gert Driesen <[email protected]>
- * MethodInfoTest.cs: Added test for bug #81997. Code formatting.
- 2007-06-22 Raja R Harinath <[email protected]>
- * MethodInfoTest.cs (IsGenericMethodDefinition): New.
- 2007-06-02 Zoltan Varga <[email protected]>
- * PropertyInfoTest.cs: Mark new test as NotWorking.
-
- * PropertyInfoTest.cs: Added new test.
- 2007-05-07 Gert Driesen <[email protected]>
- * MethodInfoTest.cs: Modified test for bug #81538 to verify both
- 1.0 and 2.0 behavior.
- 2007-05-07 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add test case for #81538.
- 2007-05-01 Gert Driesen <[email protected]>
- * ConstructorInfoTest.cs: Added tests for Invoke.
- 2007-05-01 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Reenable a NotWorking test which is working now.
- 2007-03-14 Eyal Alaluf <[email protected]>
- * MethodInfoTest.cs: Disabled tests for TARGET_JVM that use MethodBody.
- 2006-11-14 Raja R Harinath <[email protected]>
- * AssemblyTest.cs (bug79872): New test for #79872.
- 2006-10-22 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added tests for bug #79712 and #79715. All marked
- NotWorking.
- 2006-10-19 Gert Driesen <[email protected]>
- * AssemblyNameTest.cs: Added test for CodeBase of AssemblyName
- filled by AssemblyName.GetAssemblyName. Added tests for bug #79661.
- 2006-09-29 Jb Evain <[email protected]>
- * FieldInfoTest.cs: Test for FieldInfo.SetValue on a literal field.
- 2006-09-06 Zoltan Varga <[email protected]>
- * ParameterInfoTest.cs: Add a test for enum default parameter values.
- 2006-09-02 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add a test for the ReturnParameter property.
- 2006-08-08 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Modified test to pass on 2.0 profile and .NET 2.0.
- 2006-07-12 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add tests for ContainsGenericParameters ().
- 2006-07-09 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Enabled test for bug #78468.
- 2006-07-01 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add a test for #77888.
- 2006-06-29 Raja R Harinath <[email protected]>
- * MethodInfoTest.cs (GetBaseDefinition): New test for
- MethodInfo.GetBaseDefinition.
- 2006-06-07 Zoltan Varga <[email protected]>
- * BinderTests.cs: Add test for BindingFlags.ExactBinding.
- 2006-05-28 Gert Driesen <[email protected]>
- * MethodInfoTest.cs: No longer derive from (deprecated) Assertion.
- Number individual asserts. Marked ByrefVtypeInvoke as NotDotNet for
- NET_1_1 profile, due to bug in MS.NET 1.1.
- 2006-05-28 Gert Driesen <[email protected]>
- * MethodInfoTest.cs: GetMethodBody no longer throws ArgumentException
- for methods that have no IL body. Part of fix for bug #78522.
- 2006-05-28 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added tests for bug #78517.
- 2006-05-20 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added tests for bugs #78464, #78465 and #78468.
- Spaces to tabs.
- 2006-05-09 Atsushi Enomoto <[email protected]>
- * BinderTests.cs : (BindToMethodNamedArgs) hmm, why it didn't
- show up during my last test run...
- 2006-05-08 Atsushi Enomoto <[email protected]>
- * BinderTests.cs : added test for bug #77079.
- 2006-05-08 Atsushi Enomoto <[email protected]>
- * BinderTests.cs : added test for bug #42547.
- 2006-05-08 Atsushi Enomoto <[email protected]>
- * BinderTests.cs : added test for bug #41691.
- 2006-03-09 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add test for #77668.
- 2006-02-11 Zoltan Varga <[email protected]>
- * FieldInfoTest.cs: Revert nullable reftype tests.
- 2006-02-09 Zoltan Varga <[email protected]>
- * FieldInfoTest.cs: Add tests for nullable reference types.
- 2006-02-07 Martin Baulig <[email protected]>
- * MethodInfoTest.cs: Added test where IsGenericMethod must return false.
- 2006-02-03 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add tests for IsGenericMethod.
- 2006-02-02 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add test for Invoke and byref valuetypes.
- 2006-01-19 Atsushi Enomoto <[email protected]>
- * ModuleTest.cs : ResolveString() does not work under .NET 2.0 either.
- 2006-01-06 Raja R Harinath <[email protected]>
- * PropertyInfoTest.cs: Use newer nunit API.
- (Bug77160): New test from #77160.
- 2006-01-03 Zoltan Varga <[email protected]>
- * FieldInfoTest.cs PropertyInfoTest.cs MethodInfoTest.cs: Add Nullable
- tests.
- 2005-12-20 Carlos Alberto Cortez <[email protected]>
- * AssemblyTest.cs: Remove 'NotWorking' category attribute
- to the Reflection Only tests, since they are working by now.
- * FieldInfoTest.cs: Likewise.
- * MethodInfoTest.cs: Likewise.
- 2005-12-02 Robert Jordan <[email protected]>
- * ReflectedTypeTest.cs: New. Test case for #76829.
- 2005-11-16 Atsushi Enomoto <[email protected]>
- * MethodInfoTest.cs : added MakeGenericMethod test for #76575.
- 2005-11-15 Zoltan Varga <[email protected]>
- * AssemblyTest.cs: Fix build.
- 2005-11-05 Kornél Pál <[email protected]>
- * AssemblyTest.cs: Updated runtime version to v2.0.50727 (2.0 RTM).
- 2005-10-26 Atsushi Enomoto <[email protected]>
- * MethodInfoTest.cs : added test for bug #76541.
- 2005-09-26 Carlos Alberto Cortez <[email protected]>
- * AssemblyNameTest.cs: Added some tests for the 2.0 new
- ctor. Keep some of them as NotWorking, since we need to figure out
- an elegant way to avoiding creating Version when not passing it.
-
- 2005-06-30 Ben Maurer <[email protected]>
- * AssemblyTest.cs: Relied on the 1.1 test suite being built when
- running teh 2.0 test suite, which could cause failures
- 2005-06-14 Sebastien Pouliot <[email protected]>
- * AssemblyNameCas.cs: Removed execution of AssemblyNameTest.Self as it
- is now NotWorking.
- 2005-06-13 Sebastien Pouliot <[email protected]>
-
- * AssemblyNameTest.cs: "Fixed" tests so they execute without errors on
- both Fx 1.1 SP1 and Fx 2.0 beta 2. Added corresponding NotWorking.
- 2005-06-13 Sebastien Pouliot <[email protected]>
- * AssemblyNameTest.cs: Added distinctive names for all asserts in
- Version. Changed Self to NotWorking as other cases returns null. It
- will re-activated once we know the logic behind it.
- 2005-06-07 Carlos Alberto Cortez <[email protected]>
- * AssemblyNameTest.cs: Added tests to Version method,
- in order to do additional checks with AssemblyBuilder
- version.
-
- 2005-06-07 Gonzalo Paniagua Javier <[email protected]>
- * AssemblyTest.cs: put back GetEntryAssembly, but this one is working.
- 2005-06-06 Sebastien Pouliot <[email protected]>
- * AssemblyTest.cs: Removed asserts using PortableExecutableKind -
- because (1) it was renamed to PortableExecutableKinds *and* (2)
- it's documented as obsolete and will be removed for 2.0 RTM.
- 2005-06-06 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Disable pseudo custom attribute test.
- 2005-06-05 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Enabled test for bug #74958.
- 2005-05-27 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Reenable the pseudo attribute test.
- 2005-05-25 Zoltan Varga <[email protected]>
- * TypeDelegatorTest.cs: New file.
- * MethodInfoTest.cs: Add a test for bug #75029.
- 2005-05-20 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Allow test for bug #74958 to pass on .NET 2.0
- Beta 2.
- 2005-05-15 Gert Driesen <[email protected]>
- * AssemblyTest.cs: Added (ignored) test case for bug #74958.
- 2005-05-07 Ben Maurer <[email protected]>
- * EventInfoTest.cs: New file. Has a test case for #64191.
- 2005-05-02 Sebastien Pouliot <[email protected]>
- * AssemblyTest.cs, FieldInfoTest.cs, MethodInfoTest.cs: Disabled
- ReflectionOnly tests as they break every tests afterward. Calberto
- is looking for the problem...
- 2005-04-28 Sebastien Pouliot <[email protected]>
- * AssemblyCas.cs: New. CAS unit tests for Assembly.
- 2005-04-27 Sebastien Pouliot <[email protected]>
- * AssemblyTest.cs: Updated NET_2_0 tests to check for v2.0.50215
- (beta2).
- 2005-04-14 Sebastien Pouliot <[email protected]>
- * AssemblyTest.cs: Added tests for GetObjectData (null) and
- GetReferencedAssemblies (no codebase returned) methods.
- 2005-04-08 Raja R Harinath <[email protected]>
- * FieldInfoTest.cs (RefOnlyFieldClass): Rename from RefOnlyClass.
- * MethodInfoTest.cs (RefOnlyMethodClass): Rename from RefOnlyClass.
- 2005-04-08 Carlos Alberto Cortez <[email protected]>
- * AssemblyTest.cs: Added tests for ReflectionOnly support.
- * MethodInfoTest.cs: Added test for Reflection Only support.
- * FieldInfoTest.cs: Added tests for ReflectionOnly support.
-
- 2005-04-04 Sebastien Pouliot <[email protected]>
- * AssemblyNameTest.cs: Added tests for Clone and serialization without
- a strongname.
- * AssemblyNameCas.cs: New. CAS unit tests for AssemblyName.
- * StrongNameKeyPairTest.cs: Little changes to make it easier to reuse
- in CAS tests.
- * StrongNameKeyPairCas.cs: New. CAS unit tests for StrongNameKeyPair.
- 2005-04-04 Sebastien Pouliot <[email protected]>
- * AssemblyNameTest.cs: Add test for ArgumentNullException on
- GetObjectData. Made existing tests more nunit2.2 like.
- * ModuleCas.cs: Added new tests for FullyQualifiedName and Name
- properties.
- * ModuleTest.cs: Add test for ArgumentNullException on GetObjectData.
- 2005-03-24 Sebastien Pouliot <[email protected]>
- * ModuleCas.cs: New. CAS unit tests for Module.
- 2005-03-01 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Disable code causing mcs to fail.
- 2005-01-28 Sebastien Pouliot <[email protected]>
- * AssemblyAlgorithmIdAttributeTest.cs: Removed CLSCompliant(false)
- attribute as it wasn't required (and gives a compilation warning).
- 2005-01-23 Nick Drochak <[email protected]>
- * ModuleTest.cs: Long path names gives Windows fits.
- 2005-01-19 Zoltan Varga <[email protected]>
- * MethodInfoTest.cs: Add tests for GetMethodBody.
- 2005-01-16 Nick Drochak <[email protected]>
- * AssemblyTest.cs: Try loading assembly from .NET tests and mono tests
- 2004-11-05 Zoltan Varga <[email protected]>
- * AssemblyTest.cs: Reenable GetFiles (true) test. Add a LoadWithPartialName () test.
- * MethodInfoTest.cs: Add test for byref parameters to Invoke ().
- 2004-09-26 Zoltan Varga <[email protected]>
- * FieldInfoTest.cs: Add tests for MarshalAsAttribute.
- * ParameterInfoTest.cs: Add tests for MarshalAsAttribute.
- * FieldInfoTest.cs: Add tests for FieldOffsetAttribute.
-
- * FieldInfoTest.cs: New file.
- * MethodInfoTest.cs: Add tests for PreserveSigAttribute.
-
- * MethodInfoTest.cs: New file.
- 2004-09-25 Zoltan Varga <[email protected]>
- * ParameterInfoTest.cs: New file.
- 2004-09-22 Zoltan Varga <[email protected]>
- * ModuleTest.cs: Add tests for NET 2.0 ResolveXXX methods.
- 2004-09-20 Zoltan Varga <[email protected]>
- * AssemblyTest.cs: Add tests for MetadataToken and ManifestModule.
- 2004-08-29 Nick Drochak <[email protected]>
- * BinderTests.cs: Make tests pass on MS.NET 1.1.
- 2004-08-09 Sebastien Pouliot <[email protected]>
- * AssemblyTest.cs: Added new tests for 1.1 and 2.0 features. Converted
- existing tests to NUnit 2.2.
- 2004-07-03 Zoltan Varga <[email protected]>
- * ModuleTest.cs: New tests for FindTypes.
- 2004-06-10 Lluis Sanchez <[email protected]>
- * AssemblyNameTest.cs: AssertEqualsByteArrays(): don't crash if arrays are
- empty. TestSerialization(): Use AssertEqualsByteArrays to compare keys.
- Added messages to the assertions.
- 2004-06-09 Gert Driesen <[email protected]>
- * AssemblyNameTests.cs: added tests for AssemblyName.FullName
- and serialization of AssemblyName, converted tests to use Assert
- class
- 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
- * BinderTests.cs: added test for null type in the argument list.
- 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
- * BinderTests.cs: one more test for matching a single property. Adapted
- to nunit 2.2 style.
- 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
- * BinderTests.cs: added more indexers and more SelectProperty tests.
- 2003-05-20 Sebastien Pouliot <[email protected]>
- * StrongNameKeyPairTest.cs: SetUp (renamed) is now public (required
- for new nunit).
- 2004-05-18 Gert Driesen ([email protected])
- * PropertyInfoTest.cs: New file. Added test for
- bug #58661.
- 2004-05-13 Gonzalo Paniagua Javier <[email protected]>
- * BinderTests.cs: New file.
- 2003-04-06 Sebastien Pouliot <[email protected]>
- * StrongNameKeyPairTest.cs: Added test case for ECMA "key".
- 2003-03-24 Sebastien Pouliot <[email protected]>
- * StrongNameKeyPairTest.cs: Converted to NUnit2 format. Removed
- unneeded code and false comments (too much copy-n-paste).
- 2003-03-09 Jackson Harper <[email protected]>
- * AssemblyAlgorithmIdAttributeTest.cs:
- * AssemblyConfigurationAttributeTest.cs:
- * AssemblyCopyrightAttributeTest.cs:
- * AssemblyCultureAttributeTest.cs:
- * AssemblyDelaySignAttributeTest.cs:
- * AssemblyDescriptionAttributeTest.cs:
- * AssemblyFileVersionAttributeTest.cs:
- * AssemblyInformationalVersionAttributeTest.cs: New test cases
- from [email protected].
- 2003-11-24 Zoltan Varga <[email protected]>
- * ModuleTest.cs: Make the assembly name unique to fix the GlobalData
- test.
- 2003-11-17 Zoltan Varga <[email protected]>
- * ModuleTest.cs: Fix temp folder path
- 2003-10-17 Zoltan Varga <[email protected]>
- * AssemblyNameTest.cs: Convert to Nunit2 format, add tests for
- CultureInfo, Version and HashAlgorithm properties.
- 2003-09-30 Zoltan Varga <[email protected]>
- * AssemblyTest.cs (TestGetType): New regression test for #49114.
- 2003-05-21 Zoltan Varga <[email protected]>
- * ModuleTest.cs: New file.
- 2003-05-13 Gonzalo Paniagua Javier <[email protected]>
- * AssemblyTest.cs: New file.
- 2002-12-30 Sebastien Pouliot <[email protected]>
- * AssemblyNameTest.cs: Added test for FullName (null cultureinfo).
- 2002-12-23 Sebastien Pouliot <[email protected]>
- * AssemblyNameTest.cs: Added test for non-signed assembly (which
- returns an empty array - i.e. not null like an empty assembly).
- 2002-12-21 Nick Drochak <[email protected]>
- * all: make tests build and run under nunit2
- 2002-12-08 Sebastien Pouliot <[email protected]>
- * AllTests.cs: Added test suites for AssemblyName and
- StrongNameKeyPair.
- * AssemblyNameTest.cs: New. Test suite for AssemblyName.
- * StrongNameKeyPairTest.cs: New. Test suite for StrongNameKeyPair.
|