diff --git a/Issue4491/.runsettings b/Issue4491/.runsettings new file mode 100644 index 0000000..28baebb --- /dev/null +++ b/Issue4491/.runsettings @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + false + + + .\TestResults + + + 0 + + + + 10000 + + + false + + + + + + false + false + true + + + 10 + + + + + + + + + + + + + + + + + + + false + true + true + true + true + false + false + + + + + false + + + + + + + + + 0 + + Off + + -1 + 0 + + + + + true + true + false + + + + 1 + true + false + false + Skipped + + Name + + : + Current + + 2000 + false + true + Strict + false + + + + diff --git a/Issue4491/Issue4491.sln b/Issue4491/Issue4491.sln index 27c2696..89dd5fd 100644 --- a/Issue4491/Issue4491.sln +++ b/Issue4491/Issue4491.sln @@ -5,6 +5,11 @@ VisualStudioVersion = 17.5.33627.172 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Issue4491", "Issue4491.csproj", "{DCA0D10F-1187-4F1A-A0CC-A44280D21765}" EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{440E4571-F57F-4C3C-A785-AC7E2B8440F8}" + ProjectSection(SolutionItems) = preProject + .runsettings = .runsettings + EndProjectSection +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU diff --git a/Issue4491/UnitTest1.cs b/Issue4491/UnitTest1.cs index a279589..290b352 100644 --- a/Issue4491/UnitTest1.cs +++ b/Issue4491/UnitTest1.cs @@ -2,17 +2,24 @@ namespace Issue4491; public class Tests { + //[Test] + //[Repeat(30)] + //public void Test1() + //{ + // bool x = true; + // Assert.That(x, Is.False); + //} + [Test] [Repeat(30)] - public void Test1() + public void Test2() { bool x = true; - Assert.That(x, Is.False); + Assert.That(x, Is.True); } [Test] - [Repeat(30)] - public void Test2() + public void Test3() { bool x = true; Assert.That(x, Is.True);