Example #1
0
        public void Remove_NotExistingMobileIdPassed_ReturnsNotFoundResponse()
        {
            // Arrange
            int id = int.MaxValue;
            // Act
            var badResponse = _MobiileController.DeleteMobile(id);

            // Assert
            Assert.IsType <NotFoundResult>(badResponse);
        }