Files
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01:00

22 lines
585 B
C#

using System;
namespace UnityEditor.PackageManager.ValidationSuite
{
/// <summary>
/// The various states a test can be in
/// </summary>
public enum TestState
{
/// <summary>The test succeeded.</summary>
Succeeded,
/// <summary>The test failed.</summary>
Failed,
/// <summary>The test was not run.</summary>
NotRun,
/// <summary>The test is currently running.</summary>
Running,
/// <summary>The test is not yet implemented and should be skipped.</summary>
NotImplementedYet
}
}