Tag: Integration Testing

  • ASP.NET Core Integration Tests with Selenium & WebApplicationFactory

    ASP.NET Core Integration Tests with Selenium & WebApplicationFactory

    WebApplicationFactory<T> is one of those awesome features in ASP.NET Core that practically nobody knows about. WebApplicationFactory<T> lets you quickly and easily run integration tests against your ASP.NET Core MVC or Web API application without having to deploy the app to an actual server like Kestrel or IIS. Instead of running in a “real” server, your…