AutomatedTellerMachine.Tests.Controllers.HomeControllerTest.Contact C# (CSharp) Méthode

Contact() private méthode

private Contact ( ) : void
Résultat void
        public void Contact()
        {
            // Arrange
            HomeController controller = new HomeController();

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

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