Skip to content

Commit 4e9a570

Browse files
committed
Result codes in their own source file
1 parent b9696a4 commit 4e9a570

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
namespace StrongGrid.IntegrationTests
2+
{
3+
internal enum ResultCodes
4+
{
5+
Success = 0,
6+
Exception = 1,
7+
Cancelled = 1223
8+
}
9+
}

Source/StrongGrid.IntegrationTests/TestsRunner.cs

-7
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,6 @@ internal class TestsRunner : IHostedService
1717
private const int TEST_NAME_MAX_LENGTH = 25;
1818
private const string SUCCESSFUL_TEST_MESSAGE = "Completed successfully";
1919

20-
private enum ResultCodes
21-
{
22-
Success = 0,
23-
Exception = 1,
24-
Cancelled = 1223
25-
}
26-
2720
private readonly ILoggerFactory _loggerFactory;
2821

2922
public TestsRunner(ILoggerFactory loggerFactory)

0 commit comments

Comments
 (0)