AutomatedTellerMachine.Tests.Controllers.HomeControllerTest.Contact C# (CSharp) Method

Contact() private method

private Contact ( ) : void
return void
        public void Contact()
        {
            // Arrange
            HomeController controller = new HomeController();

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

            // Assert
            Assert.IsNotNull(result);
        }
    }
HomeControllerTest