Exemplo n.º 1
0
        public void CheckSearchSong()
        {
            bool search = false;

            newsong = testContext.NewSong();
            testContext.AddSongsToList();
            if (testContext.Songslist.Contains(newsong))
            {
                search = true;
            }

            Assert.False(search);
        }