Exemplo n.º 1
0
        public void EFGetByRating(string rating, bool expected)
        {
            var        repo = new DvdRepositoryEF();
            List <Dvd> dvds = repo.GetAllByRating(rating);

            bool actual = false;

            if (dvds != null)
            {
                actual = true;
            }

            Assert.AreEqual(expected, actual);
        }