Skip to content

Getting Started with Unit Tests

Matthew Little edited this page Oct 1, 2018 · 23 revisions

Install Prerequisites

Setup Project

Open command line / terminal and create a new C# unit test project with the command dotnet new console --name YOUR_PROJECT_NAME

Example:

dotnet new mstest --name MyProject

Add the Meadow unit testing framework package with the command dotnet add package Meadow.UnitTestTemplate

cd MyProject
dotnet add package Meadow.UnitTestTemplate
Clone this wiki locally