A new test file

We’ll start by creating a new test file. Let's name this file SpeakerControllerSearchTests.cs. Now, create the first test, ItExists:

[Fact]public void ItExists(){  var controller = new SpeakerController();}

To make this compile, you'll need to create a Web API controller called SpeakerMeetController. Add a new ASP.NET Core Web Application project to your solution. Give your project a name of SpeakerMeet.API and choose the Web API template to get started. Add a reference to this project from your test project and add the appropriate using statement.

Now, let's ensure that there is a Search endpoint available. Let's create another test:

[Fact]public void ItHasSearch(){  // Arrange  var controller = new SpeakerController(); // Act ...

Get Improving your C# Skills now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.