/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.testtools.codecoverage@1.2.6/Editor/Events/SessionEventInfo.cs
25 строк
819 B
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
using System.Collections.Generic; namespace UnityEditor.TestTools.CodeCoverage { /// <summary> /// The code coverage session information retuned by the coverage session <see cref="Events"/>. /// </summary> public class SessionEventInfo { /// <summary> /// The code coverage session mode. /// </summary> public SessionMode SessionMode { get; internal set; } /// <summary> /// The coverage results paths of the files or folders created during the code coverage session. /// </summary> public List<string> SessionResultPaths { get; internal set; } internal SessionEventInfo(SessionMode mode, List<string> resultPaths) { SessionMode = mode; SessionResultPaths = resultPaths; } } }