Beispiel #1
0
        public static void zCanCreateFeature()
        {
            VehicleRepositoryADO repo = new VehicleRepositoryADO();
            var before = repo.GetAllFeatures().features.Count();

            repo.AddFeatured(1);
            var after = repo.GetAllFeatures().features.Count();

            Assert.AreEqual(before, after - 1);
        }