コード例 #1
0
        public void Setup()
        {
            Database.SetInitializer(new DropCreateDatabaseAlways<GamesRentalContext>());

            _contextForTest = new GamesRentalContext();
            _contextForTest.Customers.Add(ObjectMother.GetCustomer());
            _contextForTest.SaveChanges();
        }