From ddb7dda7ae411c42f0eb5c97bbb6c2b2a551c76a Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Mon, 26 Apr 2021 12:29:55 -0700 Subject: [PATCH] Updated Testing (markdown) --- Testing.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Testing.md b/Testing.md index 3db8b3d..4689136 100644 --- a/Testing.md +++ b/Testing.md @@ -5,8 +5,6 @@ * xUnit for unit tests * simon-k/dotnet-code-coverage-badge@v1.0.0 for generating code coverage badge -![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/migueldeicaza/90ef67a684cb71db1817921a970f8d27/raw/code-coverage.json) - ## Learning about Unit Testing If you are new to automated unit tests, here are some good, easy to read resources: @@ -17,6 +15,10 @@ If you are new to automated unit tests, here are some good, easy to read resourc `Terminal.Gui` uses [xunit](https://xunit.net/) for automated unit tests run automatically with Github Actions. +Current code coverage (for the most recently release nuget package): + +![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/migueldeicaza/90ef67a684cb71db1817921a970f8d27/raw/code-coverage.json) + ### Notes * Running tests in parallel is disabled because `Application` is a singleton. Do not change those settings.