コード例 #1
0
        public void Contact_should_display_contact_view()
        {
            // Arrange
            ProductController controller = new ProductController(mock.Object);

            // Act
            ViewResult result = controller.Contact() as ViewResult;

            // Assert
            // Assert
            Assert.AreEqual("", result.ViewName);
        }