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);
        }