Practice_Unity/Library/PackageCache/com.unity.test-framework@a6f5be5f149c/Tests/TestNewCustomAssembly/NewPlayModeTest.cs
2025-09-16 17:30:13 +09: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;
}
}