| enum | UnityTest.CheckMethod {
UnityTest.CheckMethod.AfterPeriodOfTime = 1 << 0,
UnityTest.CheckMethod.Start = 1 << 1,
UnityTest.CheckMethod.Update = 1 << 2,
UnityTest.CheckMethod.FixedUpdate = 1 << 3,
UnityTest.CheckMethod.LateUpdate = 1 << 4,
UnityTest.CheckMethod.OnDestroy = 1 << 5,
UnityTest.CheckMethod.OnEnable = 1 << 6,
UnityTest.CheckMethod.OnDisable = 1 << 7,
UnityTest.CheckMethod.OnControllerColliderHit = 1 << 8,
UnityTest.CheckMethod.OnParticleCollision = 1 << 9,
UnityTest.CheckMethod.OnJointBreak = 1 << 10,
UnityTest.CheckMethod.OnBecameInvisible = 1 << 11,
UnityTest.CheckMethod.OnBecameVisible = 1 << 12,
UnityTest.CheckMethod.OnTriggerEnter = 1 << 13,
UnityTest.CheckMethod.OnTriggerExit = 1 << 14,
UnityTest.CheckMethod.OnTriggerStay = 1 << 15,
UnityTest.CheckMethod.OnCollisionEnter = 1 << 16,
UnityTest.CheckMethod.OnCollisionExit = 1 << 17,
UnityTest.CheckMethod.OnCollisionStay = 1 << 18,
UnityTest.CheckMethod.OnTriggerEnter2D = 1 << 19,
UnityTest.CheckMethod.OnTriggerExit2D = 1 << 20,
UnityTest.CheckMethod.OnTriggerStay2D = 1 << 21,
UnityTest.CheckMethod.OnCollisionEnter2D = 1 << 22,
UnityTest.CheckMethod.OnCollisionExit2D = 1 << 23,
UnityTest.CheckMethod.OnCollisionStay2D = 1 << 24
} |