/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.test-framework@1.1.33/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs
21 строка
880 B
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
using System.Collections; using NUnit.Framework.Interfaces; namespace UnityEngine.TestTools { /// <summary> /// When implemented by an attribute, this interface implemented to provide actions to execute before setup and after teardown of tests. /// </summary> public interface IOuterUnityTestAction { /// <summary>Executed before each test is run</summary> /// <param name="test">The test that is going to be run.</param> /// <returns>Enumerable collection of actions to perform before test setup.</returns> IEnumerator BeforeTest(ITest test); /// <summary>Executed after each test is run</summary> /// <param name="test">The test that has just been run.</param> /// <returns>Enumerable collection of actions to perform after test teardown.</returns> IEnumerator AfterTest(ITest test); } }