mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-13 20:46:37 +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();
|
|
}
|
|
}
|