Tagged Questions
4
votes
2answers
689 views
Writing automated tests for System.Web.HttpApplication
I am currently using Moq to write automated tests for System.Web.HttpApplication in C#:
public FakeHttpApplication CreateBaseMocks()
{
MockContext = new Mock<HttpContextBase>();
...