< Summary

Information
Class: Elsa.Workflows.Activities.Flowchart.Options.FlowchartOptions
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Activities/Flowchart/Options/FlowchartOptions.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
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_DefaultExecutionMode()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Activities/Flowchart/Options/FlowchartOptions.cs

#LineLine coverage
 1using Elsa.Workflows.Activities.Flowchart.Models;
 2
 3namespace Elsa.Workflows.Activities.Flowchart.Options;
 4
 5/// <summary>
 6/// Options for configuring flowchart execution behavior.
 7/// </summary>
 8public class FlowchartOptions
 9{
 10    /// <summary>
 11    /// Gets or sets the default execution mode for flowcharts when not explicitly specified.
 12    /// Defaults to <see cref="FlowchartExecutionMode.CounterBased"/>.
 13    /// </summary>
 64814    public FlowchartExecutionMode DefaultExecutionMode { get; set; } = FlowchartExecutionMode.CounterBased; // Default t
 15}

Methods/Properties

get_DefaultExecutionMode()