Hi,

Here is the test code to reproduce it.
    public abstract class MyClass
    {
        public virtual void Foo<T>(List<T>[] action) { }

        /* ... */
    }

    [TestFixture] public class MyTest
    {
        [Test] public void MyTestCase()
        {
            var mockery = new MockRepository();
            var mock = mockery.PartialMock<MyClass>();
            mockery.ReplayAll();
            mock.Foo<string>(null);
        }
    }

Am I doing anything wrong here or this is a bug? from Castle dynamic proxy?

Thanks,
Kenneth

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Rhino.Mocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/RhinoMocks?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to