mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
16 lines
340 B
C#
16 lines
340 B
C#
using NUnit.Framework;
|
|
|
|
|
|
namespace UnityEditor.Experimental.U2D.Commons.Tests
|
|
{
|
|
public class Placeholder
|
|
{
|
|
[Test]
|
|
public void PlaceHolderTest()
|
|
{
|
|
// Use the Assert class to test conditions.
|
|
Assert.Pass("This is a placeholder to ensure we have at least one test.");
|
|
}
|
|
}
|
|
|
|
}
|