12 lines
183 B
C#
12 lines
183 B
C#
using NUnit.Framework;
|
|
|
|
public class BasicTest
|
|
{
|
|
// check if edit mode tests works
|
|
[Test]
|
|
public void AlwaysTrueTest()
|
|
{
|
|
Assert.True(true);
|
|
}
|
|
}
|