2022-01-12 10:06:03 +03:00
|
|
|
namespace UnityEngine.TestTools
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// An interface implemented by a MonoBehaviour test.
|
|
|
|
/// </summary>
|
|
|
|
public interface IMonoBehaviourTest
|
|
|
|
{
|
2022-01-12 10:39:15 +03:00
|
|
|
/// <summary>True when the test is considered finished.</summary>
|
2022-01-12 10:06:03 +03:00
|
|
|
bool IsTestFinished {get; }
|
|
|
|
}
|
|
|
|
}
|