< Summary

Information
Class: Elsa.Bpmn.ShellFeatures.BpmnFeature
Assembly: Elsa.Bpmn
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Bpmn/ShellFeatures/BpmnFeature.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 20
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
ConfigureServices(...)100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Bpmn/ShellFeatures/BpmnFeature.cs

#LineLine coverage
 1using CShells.Features;
 2using Elsa.Common.ShellFeatures;
 3using JetBrains.Annotations;
 4using Microsoft.Extensions.DependencyInjection;
 5
 6namespace Elsa.Bpmn.ShellFeatures;
 7
 8/// <summary>
 9/// Provides BPMN execution support to the system.
 10/// </summary>
 11[ShellFeature(
 12    DisplayName = "BPMN",
 13    Description = "Provides BPMN execution capabilities for workflows.")]
 14[UsedImplicitly]
 15public class BpmnFeature : IShellFeature
 16{
 17    public void ConfigureServices(IServiceCollection services)
 18    {
 019    }
 20}