No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IErrorCallbacks.cs 613B

123456789101112131415161718
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.Api
  3. {
  4. /// <summary>
  5. /// 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.
  6. /// </summary>
  7. public interface IErrorCallbacks : ICallbacks
  8. {
  9. /// <summary>
  10. /// Method invoked on failure.
  11. /// </summary>
  12. /// <param name="message">
  13. /// The error message detailing the reason for the run to fail.
  14. /// </param>
  15. void OnError(string message);
  16. }
  17. }