< Summary

Information
Class: Elsa.Workflows.Runtime.ScheduledBackgroundActivity
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Models/ScheduledBackgroundActivity.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 9
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_WorkflowInstanceId()100%11100%

File(s)

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

#LineLine coverage
 1namespace Elsa.Workflows.Runtime;
 2
 3/// <summary>
 4/// Represents a scheduled background activity
 5/// </summary>
 6/// <param name="WorkflowInstanceId">The ID of the workflow instance containing the activity to execute.</param>
 7/// <param name="ActivityNodeId">The ID of the activity to execute.</param>
 8/// <param name="BookmarkId">The ID of the bookmark to resume.</param>
 189public record ScheduledBackgroundActivity(string WorkflowInstanceId, string ActivityNodeId, string BookmarkId);

Methods/Properties

get_WorkflowInstanceId()