< Summary

Information
Class: Elsa.Workflows.Models.BackgroundExecutionResult
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/BackgroundExecutionResult.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 8
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
get_Outcomes()100%210%
get_ExecutionLog()100%210%
get_JournalData()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/BackgroundExecutionResult.cs

#LineLine coverage
 1namespace Elsa.Workflows.Models;
 2
 3public class BackgroundExecutionResult
 4{
 05    public ICollection<BackgroundExecutionOutcome> Outcomes { get; set; } = new List<BackgroundExecutionOutcome>();
 06    public ICollection<WorkflowExecutionLogEntry> ExecutionLog { get; set; } = new List<WorkflowExecutionLogEntry>();
 07    public IDictionary<string, object?> JournalData { get; } = new Dictionary<string, object?>();
 8}