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