/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.testtools.codecoverage@1.2.6/Editor/CoverageFormats/OpenCover/Model/CoverageSession.cs
54 строки
1 KB
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
// // OpenCover - S Wilde // // This source code is released under the MIT License; see the accompanying license file. // using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; namespace OpenCover.Framework.Model { /// <summary> /// A coverage session /// </summary> public class CoverageSession { private string _version; /// <summary> /// initialise a coverage session /// </summary> public CoverageSession() { Modules = new Module[0]; Summary = new Summary(); _version = GetType().Assembly.GetName().Version.ToString(); } /// <summary> /// A unique session identifier /// </summary> public string SessionId { get; set; } /// <summary> /// A Summary of results for the session /// </summary> public Summary Summary { get; set; } /// <summary> /// A list of modules that have been profiled under the session /// </summary> public Module[] Modules { get; set; } /// <summary> /// The current version /// </summary> [XmlAttribute("Version")] public string Version { get { return _version; } // ReSharper disable once ValueParameterNotUsed set { /* intentionally left blank */} } } }