c# Programming Glossary: rhinomocks
Best Practices of Test Driven Development Using C# and RhinoMocks [closed] http://stackoverflow.com/questions/124210/best-practices-of-test-driven-development-using-c-sharp-and-rhinomocks Practices of Test Driven Development Using C# and RhinoMocks closed In order to help my team write testable code I came..
Using IoC for Unit Testing http://stackoverflow.com/questions/1465849/using-ioc-for-unit-testing single Test Double . You can use dynamic mocks like Moq or RhinoMocks to generate the Test Double but it is not required. var dep..
What are the real-world pros and cons of each of the major mocking frameworks? http://stackoverflow.com/questions/1718463/what-are-the-real-world-pros-and-cons-of-each-of-the-major-mocking-frameworks for and against the major frameworks I've come across RhinoMocks Moq TypeMock Isolator NMock Moles And other usable alternatives..
Can't get RhinoMocks to emit a mock that follows the generic type restriction rules http://stackoverflow.com/questions/4382624/cant-get-rhinomocks-to-emit-a-mock-that-follows-the-generic-type-restriction-ru get RhinoMocks to emit a mock that follows the generic type restriction rules.. the generic type restriction rules So using NUnit and RhinoMocks Defines basic behavior of all persistable domain objects public.. like a step backwards. I think the core problem is that RhinoMocks is getting confused by the generic parameters being used as..
Mocking Static methods using Rhino.Mocks http://stackoverflow.com/questions/540239/mocking-static-methods-using-rhino-mocks utilizes the CLR profiler to intercept and redirect calls. RhinoMocks NMock and Moq cannot do this because these libraries are simpler..
Difference between Dependency Injection and Mocking framework (Ninject vs RhinoMock or Moq) http://stackoverflow.com/questions/5433211/difference-between-dependency-injection-and-mocking-framework-ninject-vs-rhinom this question Ninject is Dependency Injection for .NET. RhinoMocks and Moq are both mocking frameworks. Now both have nothing to..
|