You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
852 B
33 lines
852 B
namespace UnityEditor.TestTools.TestRunner.Api |
|
{ |
|
/// <summary> |
|
/// The RunState enum indicates whether a test can be executed. |
|
/// </summary> |
|
public enum RunState |
|
{ |
|
/// <summary> |
|
/// The test is not runnable. |
|
/// </summary> |
|
NotRunnable, |
|
|
|
/// <summary> |
|
/// The test is runnable. |
|
/// </summary> |
|
Runnable, |
|
|
|
/// <summary> |
|
/// The test can only be run explicitly |
|
/// </summary> |
|
Explicit, |
|
|
|
/// <summary> |
|
/// The test has been skipped. This value may appear on a Test when certain attributes are used to skip the test. |
|
/// </summary> |
|
Skipped, |
|
|
|
/// <summary> |
|
/// The test has been ignored. May appear on a Test, when the IgnoreAttribute is used. |
|
/// </summary> |
|
Ignored, |
|
} |
|
}
|
|
|