add failing unit tests
All checks were successful
build (7.0.x)

This commit is contained in:
Holger Börchers 2023-03-29 21:49:29 +02:00
parent 291eafeeba
commit 7f5d080d10

View File

@ -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();
}
}
}
}