< Summary

Information
Class: Elsa.Workflows.Runtime.Results.WorkflowExecutionResult
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Results/WorkflowExecutionResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 8
Coverable lines: 8
Total lines: 12
Line coverage: 0%
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%210%
get_WorkflowInstanceId()100%210%
get_Status()100%210%
get_SubStatus()100%210%
get_Bookmarks()100%210%
get_Incidents()100%210%
get_TriggeredActivityId()100%210%
get_Output()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Results/WorkflowExecutionResult.cs

#LineLine coverage
 1using Elsa.Workflows.Models;
 2
 3namespace Elsa.Workflows.Runtime.Results;
 4
 05public record WorkflowExecutionResult(
 06    string WorkflowInstanceId,
 07    WorkflowStatus Status,
 08    WorkflowSubStatus SubStatus,
 09    ICollection<Bookmark> Bookmarks,
 010    ICollection<ActivityIncident> Incidents,
 011    string? TriggeredActivityId,
 012    IDictionary<string, object> Output);