説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IErrorCallbacks.cs 598B

12345678910111213141516
  1. namespace UnityEditor.TestTools.TestRunner.Api
  2. {
  3. /// <summary>
  4. /// An extended version of the <see cref="ICallbacks"/>, which get invoked if the test run fails due to a build error or if any <see cref="UnityEngine.TestTools.IPrebuildSetup"/> has a failure.
  5. /// </summary>
  6. public interface IErrorCallbacks : ICallbacks
  7. {
  8. /// <summary>
  9. /// Method invoked on failure.
  10. /// </summary>
  11. /// <param name="message">
  12. /// The error message detailing the reason for the run to fail.
  13. /// </param>
  14. void OnError(string message);
  15. }
  16. }