I read a documentation about integration tests in ASP .Net Core from https://docs.microsoft.com/en-us/aspnet/core/test/integration-tests?view=aspnetcore-3.1
Does ConfigureWebHost method from CustomWebApplicationFactory should be executed once for all tests or for each test?
And why, when I use web host (not generic host), this method (with ConfigureTestService) is executed after WithWebHostBuilder (with ConfigureTestService)?