pixelgon/Library/PackageCache/com.unity.test-framework@1.1.3/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs
2020-06-05 11:54:36 -07:00

12 lines
243 B
C#

using System.Collections;
namespace UnityEngine.TestTools
{
public interface IEditModeTestYieldInstruction
{
bool ExpectDomainReload { get; }
bool ExpectedPlaymodeState { get; }
IEnumerator Perform();
}
}