Simon is certainly right in that I've bit off a bigger piece than I thought I was. I've only used Rhino Mocks in a few limited ways and didn't realize there was more to it, so clearly I need to take some more time to understand things. Seems like the style here is to go away, finish a problem and come back instead of talking about it while working on it. So I'll spend some more time understanding things and see what I can do then.
On Oct 10, 6:41 am, "Ayende Rahien" <[EMAIL PROTECTED]> wrote: > http://ayende.com/Blog/archive/2008/10/10/recursive-mocking.aspx > > > > On Wed, Oct 8, 2008 at 6:32 AM, webpaul <[EMAIL PROTECTED]> wrote: > > > Regarding > >http://ayende.com/Blog/archive/2008/10/08/rhino-mocks-challenge-imple... > > : > > > Do you expect that Identity is not null in this test and should have > > an implementation? If so, I'm curious whether you expect changes to > > Castle.DynamicProxy.ProxyGenerator or not. In the below test > > mockService.Identity is null and gives an exception as such. Do you > > expect that and want that fixed or am I missing something? > > > public interface ISomeInterface > > { > > string Name { get; set; } > > } > > > public interface IMyService > > { > > ISomeInterface Identity { get; set;} > > } > > > [TestFixture] > > public class FluentMocksTests > > { > > [Test] > > public void CanCallSomeRandomInterfaceProperty() > > { > > var mockService = > > MockRepository.GenerateMock<IMyService>(); > > Expect.Call(mockService.Identity.Name).Return("foo"); > > Assert.AreEqual("foo", mockService.Identity.Name); > > } > > }- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Rhino Tools Dev" 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/rhino-tools-dev?hl=en -~----------~----~----~----~------~----~------~--~---
