Beispiel #1
0
        public void CanRemoveCarType()
        {
            var repo = new CarTypeRepository();

            Assert.AreEqual(2, repo.GetAll().Count);
            repo.Remove(1);
            Assert.AreEqual(1, repo.GetAll().Count);
        }