Test-Driven Test Development

Making it Go Green

MiniSpec Project

Back in the root of our project folder, let’s create a new project for minispec.exe.

Let’s make a new console project by running this command from the root project folder:

dotnet new console -n MiniSpec

MiniSpec Solution

While we’re here in the root project folder, let’s create a Solution to make building simpler.

We’ll add all of projects which we’ve created so far: MyTests, MiniSpec.Specs, and MiniSpec

dotnet new sln
dotnet sln add MyTests
dotnet sln add MiniSpec.Specs
dotnet sln add MiniSpec

If you’d ever like to build all projects at once, now you can run dotnet build from this folder.