/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.test-framework@1.1.33/UnityEngine.TestRunner/Utils/ITestRunCallback.cs
31 строка
1 KB
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
using NUnit.Framework.Interfaces; namespace UnityEngine.TestRunner { /// <summary> /// Interface for getting callsbacks on test progress directly from NUnit. This is available both in the editor and directly in the runtime. It is registered by using <see cref="TestRunCallbackAttribute"/>. /// </summary> public interface ITestRunCallback { /// <summary> /// A callback invoked when a test run is started. /// </summary> /// <param name="testsToRun">The full loaded test tree.</param> void RunStarted(ITest testsToRun); /// <summary> /// A callback invoked when a test run is finished. /// </summary> /// <param name="testResults">The result of the test run.</param> void RunFinished(ITestResult testResults); /// <summary> /// A callback invoked when each individual node of the test tree has started executing. /// </summary> /// <param name="test">The test node currently executed.</param> void TestStarted(ITest test); /// <summary> /// A callback invoked when each individual node of the test tree has finished executing. /// </summary> /// <param name="result">The result of the test tree node after it had been executed.</param> void TestFinished(ITestResult result); } }