Rhino.
I have a controller in C# using the ASP.Net MVC framework public class HomeController:Controller{ public ActionResult Index() { if (…
asp.net-mvc unit-testing mocking rhino-mocks moqI haven't play enough with this and usually use mocks, but I wonder what are the differences between this two …
mocking rhino-mocksSo the controller context depends on some asp.net internals. What are some ways to cleanly mock these up for …
asp.net-mvc unit-testing mocking moq rhino-mocksI realise that there exist some posts such as this one which have asked the same question. However, the links …
tdd rhino-mocks rhino-mocks-3.5Is it possible to mock a static method using Rhino.Mocks? If Rhino does not support this, is there a …
c# tdd mocking rhino-mocksOK, I know there has been a lot of confusion over the new AAA syntax in Rhino Mocks, but I …
rhino-mocksI'm setting up some unit tests and using Rhino Mocks to populate the object being tested. One of the things …
c# task-parallel-library rhino-mocksIn order to help my team write testable code, I came up with this simple list of best practices for …
c# unit-testing tdd rhino-mocksI call _mocks.ReplayAll(), then one or more _mockedObject.AssertWasCalled() and then _mocks.VerifyAll(). But it tells me that "This …
c# nunit rhino-mocks assertI am unit testing code written against the ADO .NET Entity Framework. I would like to populate an in-memory database …
entity-framework rhino-mocks