Nexus/Library/PackageCache/com.unity.test-framework@353f8d76a670/UnityEditor.TestRunner/Api/TestMode.cs

22 lines
432 B
C#
Raw Permalink Normal View History

2026-01-06 17:23:00 +01:00
using System;
namespace UnityEditor.TestTools.TestRunner.Api
{
/// <summary>
/// A flag indicating whether to run Edit Mode or Play Mode tests.
/// </summary>
[Flags]
public enum TestMode
{
/// <summary>
/// Run EditMode tests.
/// </summary>
EditMode = 1 << 0,
/// <summary>
/// Run PlayMode tests.
/// </summary>
PlayMode = 1 << 1,
}
}