< Summary

Information
Class: Elsa.Workflows.Runtime.InvokeTriggerRequest
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Requests/InvokeTriggerRequest.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 15
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_Workflow()100%11100%
get_ActivityId()100%11100%
get_CorrelationId()100%11100%
get_Input()100%11100%
get_Variables()100%11100%
get_Properties()100%11100%
get_ParentWorkflowInstanceId()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Requests/InvokeTriggerRequest.cs

#LineLine coverage
 1using Elsa.Workflows.Activities;
 2
 3namespace Elsa.Workflows.Runtime;
 4
 5public class InvokeTriggerRequest
 6{
 107    public Workflow Workflow { get; set; } = null!;
 108    public string ActivityId { get; set; } = null!;
 109    public string? CorrelationId { get; set; }
 1010    public IDictionary<string, object>? Input { get; set; }
 511    public IDictionary<string, object>? Variables { get; set; }
 1012    public IDictionary<string, object>? Properties { get; set; }
 1013    public string? ParentWorkflowInstanceId { get; set; }
 14
 15}