< Summary

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

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Activities/ParallelForEach.cs

#LineLine coverage
 1using System.Runtime.CompilerServices;
 2using Elsa.Workflows.Attributes;
 3
 4namespace Elsa.Workflows.Activities;
 5
 6/// <summary>
 7/// Schedule an activity for each item in parallel.
 8/// </summary>
 9[Activity("Elsa", "Looping", "Schedule an activity for each item in parallel.")]
 10public class ParallelForEach : ParallelForEach<object>
 11{
 12    /// <inheritdoc />
 113    public ParallelForEach([CallerFilePath] string? source = null, [CallerLineNumber] int? line = null) : base(source, l
 14    {
 115    }
 16}