Ejemplo n.º 1
0
        public void AlbumExists()
        {
            AlbumController ctrl   = new AlbumController(new MockSixteenBarsDb());
            var             result = ctrl.AlbumExists(" Because the internet", "childish Gambino ");

            Assert.AreEqual(true, result, "Because the Internet from Childish Gambino should exists.");

            result = ctrl.AlbumExists(" Because the internet", "Jay-z ");
            Assert.AreEqual(false, result, "Because the Internet from Jay-Z should not exists.");
        }