public void B_Read_1()
        {
            a = new Project.Data.Repository(db);
            IEnumerable <Project.Domain.PlayList> alist = a.GetPlayLists();

            Assert.Pass();
        }
        public void D_Delete()
        {
            int pl = 0;

            foreach (var i in a.GetPlayLists())
            {
                pl = i.Id;
            }
            a = new Project.Data.Repository(db);
            a.DeletePlayList(pl);
            Assert.Pass();
        }
        public void B_Read_3()
        {
            a = new Project.Data.Repository(db);
            int pl = 0;

            foreach (var i in a.GetPlayLists())
            {
                pl = i.Id;
            }
            unitTest = a.GetPlayListByTitle("testing");
            Assert.AreEqual(unitTest.Id, pl);
        }
        public void C_Update()
        {
            a = new Project.Data.Repository(db);
            int pl = 0;

            foreach (var i in a.GetPlayLists())
            {
                pl = i.Id;
            }
            unitTest       = a.GetPlayListById(pl);
            unitTest.Title = "newtitle";
            a.UpdatePlayList(unitTest);
            unitTest = a.GetPlayListById(pl);
            Assert.AreEqual(unitTest.Title, "newtitle");
        }