From 3fc9f59acf888ef664866824397d541df98a5ccb Mon Sep 17 00:00:00 2001 From: Michael Kaufmann <5276337+wulfland@users.noreply.github.com> Date: Thu, 9 Dec 2021 14:51:52 +0100 Subject: [PATCH] Add a normal failing test that is not flaky --- FlakyTests/NormalTests.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/FlakyTests/NormalTests.cs b/FlakyTests/NormalTests.cs index e7165d0..61f92b3 100644 --- a/FlakyTests/NormalTests.cs +++ b/FlakyTests/NormalTests.cs @@ -27,6 +27,7 @@ public void LongRunningTest(int milliseconds) [InlineData(0, 5, 5)] [InlineData(100, 100, 200)] [InlineData(-5, 5, 0)] + [InlineData(-5, 5, 10)] public void AddTest(int a, int b, int result) { var sut = new Sut();