From 225fe09f0e4870d955c721aa0bbf2239b6c2bf97 Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Sun, 7 Jun 2020 22:20:12 -0600 Subject: [PATCH] added readme for unit tests --- UnitTests/README.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/UnitTests/README.md b/UnitTests/README.md index 64f34caec..27b7dcccd 100644 --- a/UnitTests/README.md +++ b/UnitTests/README.md @@ -2,13 +2,4 @@ `Terminal.Gui` uses [xunit](https://xunit.net/) for automated unit tests run automatically with Github Actions. -## Notes - -* Running tests in parallel is disabled because `Application` is a singleton. Do not change those settings. - -## Guidelines for Adding More Tests - -1. Do. Please. Add lots. -2. Structure the tests by class. Name the test classes in the form of `ClassNameTests` and the file `ClassNameTests.cs`. -3. The test functions themselves should have descriptive names like `TestBeginEnd`. -4. IMPORTANT: Remember `Application` is a static class (singleton). You must clean up after your tests by calling `Application.Shutdown`. +See the [Testing wiki](https://github.com/migueldeicaza/gui.cs/wiki/Testing) for details on how to add more tests.