Ejemplo n.º 1
0
        public void HttpContextService_Path_HappyFlow()
        {
            // arrange
            string path = "/page";

            _mockHttpContext.SetRequestPath(path);

            // act
            string result = _service.Path;

            // assert
            Assert.AreEqual(path, result);
        }