namespace UnityEditor.TestTools.TestRunner.Api
{
///
/// An extended version of the , which get invoked if the test run fails due to a build error or if any has a failure.
///
public interface IErrorCallbacks : ICallbacks
{
///
/// Method invoked on failure.
///
///
/// The error message detailing the reason for the run to fail.
///
void OnError(string message);
}
}