WebApplicationFactory<TEntryPoint>.CreateServer(IWebHostBuilder) Method

Definition

Creates the TestServer with the bootstrapped application in builder. This is only called for applications using IWebHostBuilder. Applications based on IHostBuilder will use CreateHost(IHostBuilder) instead.

protected virtual Microsoft.AspNetCore.TestHost.TestServer CreateServer(Microsoft.AspNetCore.Hosting.IWebHostBuilder builder);

Parameters

builder
IWebHostBuilder

The IWebHostBuilder used to create the server.

Returns

The TestServer with the bootstrapped application.

Applies to