A game about forced loneliness, made by TACStudios
1using System;
2
3namespace UnityEditor.TestTools.TestRunner.Api
4{
5 /// <summary>
6 /// The RunState enum indicates whether a test can be executed.
7 /// </summary>
8 public enum RunState
9 {
10 /// <summary>
11 /// The test is not runnable.
12 /// </summary>
13 NotRunnable,
14
15 /// <summary>
16 /// The test is runnable.
17 /// </summary>
18 Runnable,
19
20 /// <summary>
21 /// The test can only be run explicitly
22 /// </summary>
23 Explicit,
24
25 /// <summary>
26 /// The test has been skipped. This value may appear on a Test when certain attributes are used to skip the test.
27 /// </summary>
28 Skipped,
29
30 /// <summary>
31 /// The test has been ignored. May appear on a Test, when the IgnoreAttribute is used.
32 /// </summary>
33 Ignored
34 }
35}