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
/// Run EditMode tests.
EditMode = 1 << 0,
/// Run PlayMode tests.
PlayMode = 1 << 1
}