Regarding
http://ayende.com/Blog/archive/2008/10/08/rhino-mocks-challenge-implement-this-feature.aspx#feedback:
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);
}
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---