rhino-mocks
How to use the real parameters when creating a stub method in RhinoMocks?
I want to create a stub of the following interface: interface IUnitOfWork { void DoInTransaction(Action method);[详细]
2023-02-17 09:36 分类:问答What is the dfference between mocking classes and interfaces?
W开发者_运维技巧hat\'s the difference between mocking classes and interfaces in Rhino Mocks?You can\'t mock concrete classes per se, unless the class is abstract or has virtual methods. You can fake t[详细]
2023-02-17 02:58 分类:问答Testing: insert value passed into Action<T>
How do you use Rhino Mocks to insert a value into an action? Register() takes an action that is assigned to a local variable that is used later in the function:[详细]
2023-02-17 00:41 分类:问答Mocking InvokeOperation for Unit Testing using Rhino Mocks
I have a Data Service interface with a method: void GetDataByLocationId(Guid locationId, Action<InvokeOperation<IEnumerable<DataValue>>> callback);[详细]
2023-02-16 14:01 分类:问答Unable to mock assynchronous service behaviour with Rhyno mock
I try to Mock (with Rhyno mock) the behaviour of a assynchronous service. Here is an example: I got a service with one methode called 开发者_如何转开发void GetServerState(). As this method is assynch[详细]
2023-02-15 07:24 分类:问答How can I modify the result of a method call on a mocked object before it is returned?
Given the following streamlined example, using RhinoMocks and MSpec: [Subject(typeof (LocationController))][详细]
2023-02-13 17:49 分类:问答Rhino Mocks and PRISM EventAggregator
I need to do something that seems quite simple, but I cant seem to achieve it. I need to be able to write a unit test that calls the action and filter delegates of any subscription to an eventaggrega[详细]
2023-02-13 09:46 分类:问答How do I test Relaycommand?
I\'m reading this MSDN Article about MVVM. I\'m currently looking at the RelayCommand in figure #15. Pretend I wanted to test this SaveCommand. How开发者_运维技巧 would I do that? I\'m using NUnit and[详细]
2023-02-12 19:30 分类:问答Multithreaded code makes Rhino Mocks cause a Deadlock
We\'re currently facing some issues during Unit Testing. Our class is multithreading some function calls on Mocked objects using Rhino Mocks. Here\'s a example reduced to the minimum:[详细]
2023-02-12 15:00 分类:问答How to ask RhinoMock to correctly expect a Lambda expression
I am using Rhino Mocks and I\'m not sure how to mock a call that takes a lambda expression.Here\'s the situation:[详细]
2023-02-10 11:50 分类:问答