< Summary

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

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Api/Models/ActivityPathSegment.cs

#LineLine coverage
 1namespace Elsa.Workflows.Api.Models;
 2
 3/// <summary>
 4/// Represents a path segment in a workflow. For example, the following is a list of segments: ForEach:Body -> Container
 5/// </summary>
 6/// <param name="ActivityNodeId">The node ID of the activity in the graph.</param>
 7/// <param name="ActivityId">The ID of the activity.</param>
 8/// <param name="ActivityType">The type of the activity.</param>
 9/// <param name="PortName">The name of the port.</param>
 10/// <param name="ActivityName">The name of the activity.</param>
 011public record ActivityPathSegment(string ActivityNodeId, string ActivityId, string ActivityType, string PortName, string

Methods/Properties

get_ActivityNodeId()