Holger Börchers c8d16f4c34
Some checks failed
build (7.0.x)
now its failing
2023-03-29 21:50:50 +02:00

21 lines
299 B
C#

namespace SmallInjector.Tests
{
public class Tests
{
[SetUp]
public void Setup() { }
[Test]
public void Test1()
{
Assert.Pass();
}
[Test]
public void Test2()
{
Assert.Fail();
}
}
}