mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-08 16:33:07 +00:00
23 lines
274 B
C#
23 lines
274 B
C#
using NUnit.Framework;
|
|
|
|
[TestFixture]
|
|
public class ExampleFixtureTests
|
|
{
|
|
[SetUp]
|
|
public void SetUp()
|
|
{
|
|
}
|
|
|
|
[Test]
|
|
public void TestFail()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
|
|
[Test]
|
|
public void TestPass()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
}
|