generated from dailydevops/template-dotnet
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInternals.cs
More file actions
112 lines (91 loc) · 2.49 KB
/
Internals.cs
File metadata and controls
112 lines (91 loc) · 2.49 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
namespace NetEvolve.Extensions.NUnit;
/// <summary>
/// All internal names
/// </summary>
internal static class Internals
{
/// <summary>
/// Id-Property
/// </summary>
public const string Id = nameof(Id);
/// <summary>
/// Test Category
/// </summary>
public const string Category = nameof(Category);
/// <summary>
/// Test Category
/// </summary>
public const string TestCategory = nameof(TestCategory);
/// <summary>
/// Bugs
/// </summary>
public const string Bug = nameof(Bug);
/// <summary>
/// Epics
/// </summary>
public const string Epic = nameof(Epic);
/// <summary>
/// Features
/// </summary>
public const string Feature = nameof(Feature);
/// <summary>
/// Issues
/// </summary>
public const string Issue = nameof(Issue);
/// <summary>
/// PostDeployments
/// </summary>
public const string PostDeployment = nameof(PostDeployment);
/// <summary>
/// PreDeployments
/// </summary>
public const string PreDeployment = nameof(PreDeployment);
/// <summary>
/// UnitTests
/// </summary>
public const string UnitTest = nameof(UnitTest);
/// <summary>
/// UserStories
/// </summary>
public const string UserStory = nameof(UserStory);
/// <summary>
/// WorkItems
/// </summary>
public const string WorkItem = nameof(WorkItem);
/// <summary>
/// AcceptanceTests
/// </summary>
public const string AcceptanceTest = nameof(AcceptanceTest);
/// <summary>
/// FunctionalTests
/// </summary>
public const string FunctionalTest = nameof(FunctionalTest);
/// <summary>
/// IntegrationTests
/// </summary>
public const string IntegrationTest = nameof(IntegrationTest);
/// <summary>
/// EndToEndTests
/// </summary>
public const string EndToEndTest = nameof(EndToEndTest);
/// <summary>
/// IntegrationTests
/// </summary>
public const string PerformanceTest = nameof(PerformanceTest);
/// <summary>
/// ArchitectureTests
/// </summary>
public const string ArchitectureTest = nameof(ArchitectureTest);
/// <summary>
/// CodedUITests
/// </summary>
public const string CodedUITest = nameof(CodedUITest);
/// <summary>
/// TestGroup
/// </summary>
public const string TestGroup = nameof(TestGroup);
/// <summary>
/// PublicApi
/// </summary>
public const string PublicApi = nameof(PublicApi);
}