public DevicesControllerTest(TestingWebApplicationFactory <TestStartup> factory)
 {
     // Arrange
     this.factory       = factory;
     this.testingClient = factory.CreateClient();
 }
Ejemplo n.º 2
0
 public ProductControllerTests(TestingWebApplicationFactory <Startup> factory)
 {
     _client = factory.CreateClient();
 }
 public JsonFileImportControllerTest(TestingWebApplicationFactory <TestStartup> factory)
 {
     this.factory       = factory;
     this.testingClient = factory.CreateClient();
 }
Ejemplo n.º 4
0
 public HistoryTests(TestingWebApplicationFactory factory) : base(factory)
 {
 }