[Microsoft Unit Testing Tutorial](https://docs.microsoft.com/en-us/visualstudio/test/walkthrough-creating-and-running-unit-tests-for-managed-code?view=vs-2019)
To test a project add a **MSTest Test Projet** to the solution.
The test runner will execute any methods marked with `[TestInitialize]` once for every test the class contains, and will do so before running the actual test method itself.
The `[TestMethod]` attribute tells the test runner which methods represent tests.
In `TestClass.cs`:
```cs
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;