public void DPCanGetDvdById(int id, string expectedTitle) { var repo = new DPRepository(); var actual = repo.GetDvdById(id); Assert.AreEqual(expectedTitle, actual.Title); }
public void DPNotFoundDvdReturnsNull() { var repo = new DPRepository(); var dvd = repo.GetDvdById(9999); Assert.IsNull(dvd); }