From 7f5d080d10b691a6fa92232153b0cdcc0c40fe0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20B=C3=B6rchers?= Date: Wed, 29 Mar 2023 21:49:29 +0200 Subject: [PATCH] add failing unit tests --- src/SmallInjector.Tests/UnitTest1.cs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/SmallInjector.Tests/UnitTest1.cs b/src/SmallInjector.Tests/UnitTest1.cs index 5bdbcdf..f18e2f7 100644 --- a/src/SmallInjector.Tests/UnitTest1.cs +++ b/src/SmallInjector.Tests/UnitTest1.cs @@ -3,14 +3,18 @@ namespace SmallInjector.Tests public class Tests { [SetUp] - public void Setup() - { - } + public void Setup() { } [Test] public void Test1() { Assert.Pass(); } + + [Test] + public void Test2() + { + Assert.Pass(); + } } -} \ No newline at end of file +}