-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move shared types from core to api assembly
- Loading branch information
1 parent
f317ba4
commit 45a4ad7
Showing
36 changed files
with
144 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (c) Charlie Poole, Rob Prouse and Contributors. MIT License - see LICENSE.txt | ||
|
||
namespace NUnit.Common | ||
{ | ||
/// <summary> | ||
/// Exit codes returned by all agents from test runs. A value | ||
/// greater than zero indicates the number of test failures. | ||
/// </summary> | ||
public static class AgentExitCodes | ||
{ | ||
/// <summary> | ||
/// Tests ran without failure. | ||
/// </summary> | ||
public const int OK = 0; | ||
|
||
/// <summary> | ||
/// The process that created the agent terminated. | ||
/// </summary> | ||
public const int PARENT_PROCESS_TERMINATED = -1; | ||
|
||
/// <summary> | ||
/// Could no start a remote agent. | ||
/// </summary> | ||
public const int FAILED_TO_START_REMOTE_AGENT = -2; | ||
|
||
/// <summary> | ||
/// Security violation trying to launch the debugger. | ||
/// </summary> | ||
public const int DEBUGGER_SECURITY_VIOLATION = -3; | ||
|
||
/// <summary> | ||
/// Debugger is not available on current platform. | ||
/// </summary> | ||
public const int DEBUGGER_NOT_IMPLEMENTED = -4; | ||
|
||
/// <summary> | ||
/// Unable to locate the process that created the agent. | ||
/// </summary> | ||
public const int UNABLE_TO_LOCATE_AGENCY = -5; | ||
|
||
/// <summary> | ||
/// An unexpected exception terminated execution | ||
/// </summary> | ||
public const int UNEXPECTED_EXCEPTION = -100; | ||
|
||
/// <summary></summary> | ||
public const int STACK_OVERFLOW_EXCEPTION = -1073741571; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.