Beispiel #1
0
        public void DeleteExistingContent_ShouldReturnTrue()
        {
            //Arrange
            MenuItem content = _repo.GetContentByNumber(1);
            //Act
            bool removeResult = _repo.DeleteExistingContent(content);

            //Assert
            Assert.IsTrue(removeResult);
        }