Files
BookRPG/Library/PackageCache/com.unity.test-framework@76560ee600cb/Tests/TestNewCustomAssembly/NewPlayModeTest.cs
2026-07-16 21:49:59 +01: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;
}
}