Rhino.
I am using rhino mocks 3.5 and am trying to throw an exception in my expectation to test some functionality in …
c# unit-testing testing rhino-mocksI am just starting to do Test Driven Development, and I am wondering the major differences between RhinoMock, TypeMock, and …
unit-testing nunit mocking rhino-mocks typemockI'm new to mocking, and I'm having a hard time solving an issue with UnitTesting. Say I have this code: …
c# unit-testing mocking rhino-mocksTrying to mock the following method: bool IsLoginValid(LoginViewModel viewModel, out User user); Tried this initially: dependency<ILoginService>() .…
rhino-mocksUsing Rhino Mocks, how do I ensure that a method is not called while setting up the Expectations on the …
c# unit-testing rhino-mocksI know a similar question has been asked but I have not found a clear solution. I'm trying to mock …
c# unit-testing moq rhino-mocks nmockI need to choose mock framework to new project. What are the pros and cons for those frameworks? Any comparison …
moq rhino-mocks typemock justmockSay I have the following: public interface ISession { T Get<T>(dynamic filter); } } And I have the following …
c# mocking moq rhino-mocksI understand the difference between a Mock and a Stub. But different types of Mocks in RhinoMock framework confuses me. …
tdd rhino-mocks mockingIs it correct that Rhino Mocks stubs and mocks are only good for interfaces, not concrete classes? I spent quite …
.net unit-testing mocking rhino-mocks stubbing