Moq is a strongly typed and minimalistic mocking framework for .NET.
So 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've got an integration test that grabs some json result from a 3rd party server. It's really simple and works …
c# .net unit-testing mocking moqI'm new to Moq. I'm mocking a PagingOptions class. Here is how the class looks like: public class PagingOptions { [Range(1, 99999, …
c# .net moqAt my job we are using Moq for mocking and Unity for an IOC container. I am fairly new to …
c# .net moq unity-containerOkay, I have a business logic class like this: Note: For context, Vendor Briefs are simple entities that describe a "…
c# unit-testing dependency-injection mocking moqWhat is the purpose of Verifiable()? If I verify a Mock and leave this out it still verifies the SetUp. …
moqI am pretty new to use moq. I am into creating some unit test case to HttpModule and everything works …
c# asp.net unit-testing moqI am using shanselmann's MvcMockHelper class to mock up some HttpContext stuff using Moq but the issue I am having …
asp.net-mvc unit-testing tdd moq