Как создать заглушку с Moq

Как я могу создать чистую заглушку с помощью Moq? С Rhino Mocks я сделал это так:

[TestFixture]
public class UrlHelperAssetExtensionsTests
{
     private HttpContextBase httpContextBaseStub;
     private RequestContext requestContext;
     private UrlHelper urlHelper;
     private string stylesheetPath = "/Assets/Stylesheets/{0}";

     [SetUp]
     public void SetUp()
     {
          httpContextBaseStub = MockRepository.GenerateStub<HttpContextBase>();
          requestContext = new RequestContext(httpContextBaseStub, new RouteData());
          urlHelper = new UrlHelper(requestContext);
     }

     [Test]
    public void PbeStylesheet_should_return_correct_path_of_stylesheet()
    {
        // Arrange
        string expected = stylesheetPath.FormatWith("stylesheet.css");

        // Act
        string actual = urlHelper.PbeStylesheet();

        // Assert
        Assert.AreEqual(expected, actual);
    }
}

Как создать заглушку для MockRepository.GenerateStub<HttpContextBase>(); с помощью Moq? Или я просто останусь с Rhino Mocks?

Ответ 1

Вот мое предложение для вас:

Mock<HttpContextBase> mock = new Mock<HttpContextBase>();
mock.SetupAllProperties();

Затем вам нужно выполнить настройку.

Для получения дополнительной информации см. домашняя страница проекта MOQ.

Ответ 2

var mockHttpContext = new Mock<HttpContextBase>();