Nexus/Library/PackageCache/com.unity.test-framework@353f8d76a670/Tests/TestNewCustomAssembly/NewPlayModeTest.cs

20 lines
374 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
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;
}
}