Exemple #1
0
        public void MockCanLoadMakeById(int id, string expectedName, string expectedDate)
        {
            var make = repo.GetById(id);

            Assert.IsNotNull(make);
            Assert.AreEqual(expectedName, make.Name);
            Assert.AreEqual(DateTime.Parse(expectedDate), make.DateAdded);
        }