-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathColorStyle.cs
59 lines (58 loc) · 1.49 KB
/
ColorStyle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright (c) Charlie Poole, Rob Prouse and Contributors. MIT License - see LICENSE.txt
namespace NUnit.TextDisplay
{
/// <summary>
/// ColorStyle enumerates the various styles used in the console display
/// </summary>
public enum ColorStyle
{
/// <summary>
/// Color for headers
/// </summary>
Header,
/// <summary>
/// Color for sub-headers
/// </summary>
SubHeader,
/// <summary>
/// Color for each of the section headers
/// </summary>
SectionHeader,
/// <summary>
/// The default color for items that don't fit into the other categories
/// </summary>
Default,
/// <summary>
/// Test output
/// </summary>
Output,
/// <summary>
/// Color for help text
/// </summary>
Help,
/// <summary>
/// Color for labels
/// </summary>
Label,
/// <summary>
/// Color for values, usually go beside labels
/// </summary>
Value,
/// <summary>
/// Color for passed tests
/// </summary>
Pass,
/// <summary>
/// Color for failed tests
/// </summary>
Failure,
/// <summary>
/// Color for warnings, ignored or skipped tests
/// </summary>
Warning,
/// <summary>
/// Color for errors and exceptions
/// </summary>
Error
}
}