From cc58771d6e080b3a116a507f9459b9fe7b78ee11 Mon Sep 17 00:00:00 2001 From: Tigger Kindel Date: Wed, 26 Jul 2023 07:28:19 -0600 Subject: [PATCH] Test that stopOnFail works during github action --- UnitTests/Views/ViewTests.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/UnitTests/Views/ViewTests.cs b/UnitTests/Views/ViewTests.cs index b4b8d19bf..d34ad6c3a 100644 --- a/UnitTests/Views/ViewTests.cs +++ b/UnitTests/Views/ViewTests.cs @@ -17,6 +17,12 @@ namespace Terminal.Gui.ViewTests { this.output = output; } + [Fact] + public void Fail () + { + Assert.Fail ("Test to prove stopOnFail is working. During CI/CD no more tests should run after this."); + } + [Fact] public void New_Initializes () {