untangle-puzzlegame/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/Api/IErrorCallbacks.cs
2025-04-17 17:33:08 -04:00

19 lines
613 B
C#

using System;
namespace UnityEditor.TestTools.TestRunner.Api
{
/// <summary>
/// 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.
/// </summary>
public interface IErrorCallbacks : ICallbacks
{
/// <summary>
/// Method invoked on failure.
/// </summary>
/// <param name="message">
/// The error message detailing the reason for the run to fail.
/// </param>
void OnError(string message);
}
}