< Summary

Information
Class: Elsa.Workflows.Models.ScheduledActivityOptions
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/ScheduledActivityOptions.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 6
Coverable lines: 6
Total lines: 13
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_CompletionCallback()100%210%
get_Tag()100%210%
get_Variables()100%210%
get_ExistingActivityInstanceId()100%210%
get_PreventDuplicateScheduling()100%210%
get_Input()100%210%

File(s)

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

#LineLine coverage
 1using Elsa.Workflows.Memory;
 2
 3namespace Elsa.Workflows.Models;
 4
 5public class ScheduledActivityOptions
 6{
 07    public string? CompletionCallback { get; set; }
 08    public object? Tag { get; set; }
 09    public ICollection<Variable>? Variables { get; set; }
 010    public string? ExistingActivityInstanceId { get; set; }
 011    public bool PreventDuplicateScheduling { get; set; }
 012    public IDictionary<string,object>? Input { get; set; }
 13}