CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.testtools.codecoverage@1.2.5/Editor/Events/SessionEventInfo.cs
Spudnut2000 86e8b2168c Init
2024-10-01 23:23:13 -05:00

27 lines
819 B
C#

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;
}
}
}