arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.test-framework@038a2b0cacd2/Tests/TestNewCustomAssembly/NewPlayModeTest.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02: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;
}
}