< Summary

Information
Class: Elsa.Workflows.Runtime.ExecuteWorkflowResult
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/ExecuteWorkflowResult.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 14
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_WorkflowDefinitionVersionId()100%11100%
get_WorkflowInstanceId()100%11100%
get_CorrelationId()100%11100%
get_Status()100%11100%
get_SubStatus()100%11100%
get_Output()100%11100%

File(s)

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

#LineLine coverage
 1namespace Elsa.Workflows.Runtime;
 2
 3/// <summary>
 4/// Represents the result of executing a workflow.
 5/// </summary>
 6public class ExecuteWorkflowResult
 7{
 98    public string WorkflowDefinitionVersionId { get; set; } = default!;
 169    public string WorkflowInstanceId { get; set; } = default!;
 910    public string? CorrelationId { get; set; }
 2011    public WorkflowStatus Status { get; set; }
 1612    public WorkflowSubStatus SubStatus { get; set; }
 1713    public IDictionary<string, object>? Output { get; set; }
 14}