To test the .NET Core Web API project using Visual Studio, perform the following steps:
Set the project as a startup project. To do this, in Solution Explorer, right-click the project and click Set as StartUp Project.
Press F5 and by default, you can test the interface in the Swagger UI that is present in the browser.
To start the application from the Kestrel web server instead, perform the following steps:
Note: By default, the .NET Core Web API project uses IISExpress as a reverse proxy.
On the Visual Studio toolbar, from the IISExpress list, select the project name (for example, WebAPICore).
From the project name list, select Web Browser (Internet Explorer), and then click either Google Chrome or Microsoft Edge.
Note: By default, the web browser is set to Internet Explorer.
From the Debug list, click Start Debugging.
The Swagger Test Client page appears.
Click the Try it out option at each end point level and fill in the request parameter values.
Click Execute to perform the operations.
When you complete testing, on the Visual Studio toolbar, from the Debug list, click Stop Debugging.