-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some useful inline docs for shared project
- Loading branch information
1 parent
d6beea7
commit 261e3d6
Showing
38 changed files
with
682 additions
and
16 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
25 changes: 24 additions & 1 deletion
25
src/ReportPortal.Shared/Execution/Logging/LogScopeStatus.cs
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 |
---|---|---|
@@ -1,15 +1,38 @@ | ||
namespace ReportPortal.Shared.Execution.Logging | ||
{ | ||
/// <summary> | ||
/// Status of logging scope. | ||
/// Represents the status of a logging scope. | ||
/// </summary> | ||
public enum LogScopeStatus | ||
{ | ||
/// <summary> | ||
/// The logging scope is in progress. | ||
/// </summary> | ||
InProgress, | ||
|
||
/// <summary> | ||
/// The logging scope has passed. | ||
/// </summary> | ||
Passed, | ||
|
||
/// <summary> | ||
/// The logging scope has failed. | ||
/// </summary> | ||
Failed, | ||
|
||
/// <summary> | ||
/// The logging scope has been skipped. | ||
/// </summary> | ||
Skipped, | ||
|
||
/// <summary> | ||
/// The logging scope has a warning. | ||
/// </summary> | ||
Warn, | ||
|
||
/// <summary> | ||
/// The logging scope has informational messages. | ||
/// </summary> | ||
Info | ||
} | ||
} |
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
Oops, something went wrong.