Example #1
0
 public GoogleBaseManagerTests()
 {
     _productVariantService     = A.Fake <IProductVariantService>();
     _googleBaseShippingService = A.Fake <IGoogleBaseShippingService>();
     _getStockRemainingQuantity = A.Fake <IGetStockRemainingQuantity>();
     _googleBaseManager         = new GoogleBaseManager(Session, _productVariantService, _googleBaseShippingService, _getStockRemainingQuantity);
 }
Example #2
0
 public GoogleBaseManagerTests()
 {
     _googleBaseShippingService = A.Fake <IGoogleBaseShippingService>();
     _getStockRemainingQuantity = A.Fake <IGetStockRemainingQuantity>();
     _googleBaseManager         = new GoogleBaseManager(Session, _googleBaseShippingService, _getStockRemainingQuantity,
                                                        _productPricingMethod);
 }