< Summary

Information
Class: Elsa.Workflows.Api.Contracts.ShellReloadItemResult
Assembly: Elsa.Workflows.Api
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Contracts/ShellReloadItemResult.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 19
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_ShellId()100%11100%
get_Outcome()100%11100%
get_Requested()100%11100%
get_Message()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Contracts/ShellReloadItemResult.cs

#LineLine coverage
 1namespace Elsa.Workflows.Api.Contracts;
 2
 3internal class ShellReloadItemResult
 4{
 325    public string ShellId { get; init; } = default!;
 326    public ShellReloadItemOutcome Outcome { get; init; }
 217    public bool Requested { get; init; }
 148    public string? Message { get; init; }
 9}
 10
 11internal enum ShellReloadItemOutcome
 12{
 13    Reloaded,
 14    Unchanged,
 15    Removed,
 16    InvalidConfiguration,
 17    Unknown,
 18    Skipped
 19}