VR4Medical/ICI/Library/PackageCache/com.unity.test-framework@7056e7f856e9/Tests/TestNewCustomAssembly/NewPlayModeTest.cs
2025-07-29 13:45:50 +03:00

20 lines
374 B
C#

using UnityEngine;
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;
internal class NewPlayModeTest
{
//This script is just to have a referance to nunit
[Test]
public void NewPlayModeTestSimplePasses()
{
}
[UnityTest]
public IEnumerator NewPlayModeTestWithEnumeratorPasses()
{
yield return null;
}
}