This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.testtools.codecov.../Editor/Events/SessionMode.cs

18 lines
482 B
C#

namespace UnityEditor.TestTools.CodeCoverage
{
/// <summary>
/// The code coverage session mode.
/// </summary>
public enum SessionMode
{
/// <summary>
/// Describes a code coverage session triggered by automated testing, using the Test Runner.
/// </summary>
TestRunner = 0,
/// <summary>
/// Describes a code coverage session triggered by Coverage Recording.
/// </summary>
Recording = 1
}
}