Files
unity-application/Assets/Accounts/Tests/BasicTest.cs
Tibe Habils 5bd78afe82 test ding
2023-03-11 23:28:46 +01:00

12 lines
183 B
C#

using NUnit.Framework;
public class BasicTest
{
// check if edit mode tests works
[Test]
public void AlwaysTrueTest()
{
Assert.True(true);
}
}