/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.test-framework@1.1.33/UnityEditor.TestRunner/Api/RunState.cs
33 строки
852 B
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
namespace UnityEditor.TestTools.TestRunner.Api { /// <summary> /// The RunState enum indicates whether a test can be executed. /// </summary> public enum RunState { /// <summary> /// The test is not runnable. /// </summary> NotRunnable, /// <summary> /// The test is runnable. /// </summary> Runnable, /// <summary> /// The test can only be run explicitly /// </summary> Explicit, /// <summary> /// The test has been skipped. This value may appear on a Test when certain attributes are used to skip the test. /// </summary> Skipped, /// <summary> /// The test has been ignored. May appear on a Test, when the IgnoreAttribute is used. /// </summary> Ignored, } }