Yeap! Fabulous job, Krzysztof and Tuna. Will certainly report if I
find anything else. I guess the concurrent API is really stressing DP
and RM. In the mean time, I do have a feature request. Be able to
intercept the non-virtual interface implementation method. Below is an
example, can castle do something what MyProxy does?

    public interface ICommon { void Foo(); }

    public class ThirdParty : ICommon {
        public void Foo() { Console.WriteLine("From 3rd Party."); }
        /* other additional features */
    }

    public class MyProxy : ThirdParty, ICommon {
        void ICommon.Foo() {
            Console.WriteLine("From proxy.");
            base.Foo();
        }
    }



On Thu, Jul 2, 2009 at 4:32 PM, Tuna Toksoz<[email protected]> wrote:
> I verify this test passes with new DP bits.
>
> Tuna Toksöz
> Eternal sunshine of the open source mind.
>
> http://devlicio.us/blogs/tuna_toksoz
> http://tunatoksoz.com
> http://twitter.com/tehlike
>
>
>
>
> 2009/7/2 Krzysztof Koźmic <[email protected]>
>>
>> Fixed in the trunk.
>>
>> Thanks for reporting this.
>>
>> Krzysztof
>>
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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