public CategoryServiceTest()
 {
     this.db           = TestStartup.CreateDatabase();
     this.shoppingCart = TestStartup.CreateShoppingCart();
     this.category     = this.db.Categories.FirstOrDefault();
     this.mapper       = TestStartup.CreateMapper();
 }
Esempio n. 2
0
 public HomeControllerTest()
 {
     this.shoppingCart = TestStartup.CreateShoppingCart();
 }
Esempio n. 3
0
 public OrderControllerTest()
 {
     this.db           = TestStartup.CreateDatabase();
     this.shoppingCart = TestStartup.CreateShoppingCart();
 }
Esempio n. 4
0
 public ShoppingCartServiceTest()
 {
     this.db           = TestStartup.CreateDatabase();
     this.shoppingCart = TestStartup.CreateShoppingCart();
     this.products     = this.db.Products.ToList();
 }