2022-01-12 10:06:03 +03:00
|
|
|
using NUnit.Framework;
|
|
|
|
|
|
|
|
|
|
|
|
namespace UnityEditor.Experimental.U2D.Commons.Tests
|
|
|
|
{
|
2022-01-12 10:39:15 +03:00
|
|
|
internal class Placeholder
|
2022-01-12 10:06:03 +03:00
|
|
|
{
|
|
|
|
[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.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|