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