< Summary

Information
Class: Elsa.Workflows.Runtime.Options.ResumeBookmarkOptions
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Options/ResumeBookmarkOptions.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 20
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_Input()100%11100%
get_Properties()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Options/ResumeBookmarkOptions.cs

#LineLine coverage
 1using JetBrains.Annotations;
 2
 3namespace Elsa.Workflows.Runtime.Options;
 4
 5/// <summary>
 6/// Options for resuming a workflow.
 7/// </summary>
 8[UsedImplicitly]
 9public class ResumeBookmarkOptions
 10{
 11    /// <summary>
 12    /// The input to provide to the workflow.
 13    /// </summary>
 123214    public IDictionary<string, object>? Input { get; set; }
 15
 16    /// <summary>
 17    /// The properties to provide to the workflow.
 18    /// </summary>
 8119    public IDictionary<string, object>? Properties { get; set; }
 20}

Methods/Properties

get_Input()
get_Properties()