From cd317c73fe42153b2a62c1523a440a3cd94283c3 Mon Sep 17 00:00:00 2001 From: Jonathan McCaffrey Date: Sun, 28 Aug 2022 10:41:05 -0400 Subject: [PATCH] Testing test fail via Actions --- TestAutomation/TestSearchFeatures.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/TestAutomation/TestSearchFeatures.cs b/TestAutomation/TestSearchFeatures.cs index a582188..a757db0 100644 --- a/TestAutomation/TestSearchFeatures.cs +++ b/TestAutomation/TestSearchFeatures.cs @@ -1,3 +1,4 @@ +using Discord; using TestAutomation.Utils; namespace TestAutomation; @@ -17,6 +18,13 @@ public class TestSearchFeatures : BaseTest { TestReport.ThrowErrors(); } + + [Test] + public void JustFail() + { + TestReport.CheckPassed(false, + new TestMessage { Title = "Should Fail", Description = "Failed" }); + } [Test] public void DesktopOpenCloseSearchDialog()