You can run the tests by opening a command prompt in the exercise's directory, and then running the dotnet test
command. Alternatively, most IDE's have built-in support for running tests, including Visual Studio, Rider and Visual Studio code.
Initially, only the first test will be enabled. This is to encourage you to solve the exercise one step at a time. Once you get the first test passing, remove the Skip
property from the next test and work on getting that test passing.
Once none of the tests are skipped and they are all passing, you can submit your solution by opening a command prompt in the exercise's directory and running the exercism submit
command.