Ejemplo n.º 1
0
// ***** Delete
        private void DeleteContent()
        {
            string title = SetTitle();

            bool isGone = _repo.DeleteContent(title);

            Console.WriteLine(!isGone ? "Not found" : "Deleted");
        }
Ejemplo n.º 2
0
        public void DeleteContent()
        {
            bool wasDeleted = _repo.DeleteContent("Unforgiven");

            Assert.IsTrue(wasDeleted);
        }