Files
codeql/csharp/ql/integration-tests/posix-only/dotnet_test/UnitTest1.cs
2022-09-21 11:03:45 +02:00

17 lines
189 B
C#

using NUnit.Framework;
namespace dotnet_test;
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}