2026-06-02 18:57:47 -04:00
|
|
|
using UnityEngine;
|
|
|
|
|
using UnityEngine.TestTools;
|
|
|
|
|
|
2026-06-05 22:28:13 -04:00
|
|
|
namespace BracerLib.Utility.Testing
|
2026-06-02 18:57:47 -04:00
|
|
|
{
|
|
|
|
|
[ExecuteInEditMode]
|
|
|
|
|
[ExcludeFromCoverage]
|
|
|
|
|
public class MonoBehaviourTester : MonoBehaviour, IMonoBehaviourTest
|
|
|
|
|
{
|
|
|
|
|
public virtual bool IsTestFinished { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|