2023-06-21 13:28:15 -04:00

12 lines
304 B
C#

namespace UnityEngine.TestTools
{
/// <summary>
/// An interface implemented by a MonoBehaviour test.
/// </summary>
public interface IMonoBehaviourTest
{
/// <summary>True when the test is considered finished.</summary>
bool IsTestFinished {get; }
}
}