public GetProductIntegrationTests()
 {
     _productTestContext = new ProductTestContext();
 }
 public UpdateProductIntegrationTests()
 {
     _productTestContext = new ProductTestContext();
 }
 public ProductRepositoryTestSteps(ProductTestContext context, IProductRepository productRepository, Fixture fixture)
 {
     Context            = context;
     _productRepository = productRepository;
     _fixture           = fixture;
 }
Esempio n. 4
0
 public ProdutoController(ProductTestContext context)
 {
     _context = context;
 }