This commit is contained in:
tom-englert 2023-03-30 10:14:49 +02:00
Родитель 7517a2fbf1
Коммит b79fa5a5bb
1 изменённых файлов: 8 добавлений и 5 удалений

Просмотреть файл

@ -7,20 +7,23 @@ namespace Microsoft.CodeAnalysis.Testing
public enum TestStage
{
/// <summary>
/// no test is running
/// No test is running
/// </summary>
Idle,
/// <summary>
/// running the diagnostic checks
/// Running the diagnostic check
/// </summary>
Diagnostic,
/// <summary>
/// running the generated code check
/// Running the generated code check
/// </summary>
GeneratedCode,
/// <summary>
/// running the suppression check
/// Running the suppression check
/// </summary>
Suppression
Suppression,
}
}