< Summary

Information
Class: Elsa.Workflows.IWorkflowExecutionPipelineContributor
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Contracts/IWorkflowExecutionPipelineContributor.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 19
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_Order()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Contracts/IWorkflowExecutionPipelineContributor.cs

#LineLine coverage
 1using Elsa.Workflows.Pipelines.WorkflowExecution;
 2
 3namespace Elsa.Workflows;
 4
 5/// <summary>
 6/// Contributes middleware to the workflow execution pipeline.
 7/// </summary>
 8public interface IWorkflowExecutionPipelineContributor
 9{
 10    /// <summary>
 11    /// Gets the order in which the contributor is applied.
 12    /// </summary>
 013    int Order => 0;
 14
 15    /// <summary>
 16    /// Configures the workflow execution pipeline.
 17    /// </summary>
 18    void Configure(IWorkflowExecutionPipelineBuilder builder);
 19}

Methods/Properties

get_Order()