Esempio n. 1
0
        public void ViewAll_Test()
        {
            //Arrangement
            repoMock.Setup(repo => repo.Alert.FindAll()).Returns(GetAlerts());
            //Action
            var controllerActionResult = alertController.ViewAll();

            //Assert
            Assert.NotNull(controllerActionResult);
        }