< Summary

Information
Class: Elsa.Workflows.Runtime.IngressSourceFinalState
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/IngressSourceFinalState.cs
Line coverage
60%
Covered lines: 3
Uncovered lines: 2
Coverable lines: 5
Total lines: 10
Line coverage: 60%
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
.ctor(...)100%11100%
get_Name()100%210%
get_State()100%11100%
get_LastError()100%210%
get_WasForceStopped()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/IngressSourceFinalState.cs

#LineLine coverage
 1namespace Elsa.Workflows.Runtime;
 2
 3/// <summary>
 4/// Terminal state of a single ingress source as recorded in a <see cref="DrainOutcome"/>.
 5/// </summary>
 196public sealed record IngressSourceFinalState(
 07    string Name,
 28    IngressSourceState State,
 09    Exception? LastError,
 1910    bool WasForceStopped);