12 lines
179 B
C#
12 lines
179 B
C#
|
namespace UnityEditor.TestTools.TestRunner.Api
|
||
|
{
|
||
|
public enum RunState
|
||
|
{
|
||
|
NotRunnable,
|
||
|
Runnable,
|
||
|
Explicit,
|
||
|
Skipped,
|
||
|
Ignored,
|
||
|
}
|
||
|
}
|