< Summary

Information
Class: Elsa.Labels.Entities.WorkflowDefinitionLabel
Assembly: Elsa.Labels
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Labels/Entities/WorkflowDefinitionLabel.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 13
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_WorkflowDefinitionId()100%210%
get_WorkflowDefinitionVersionId()100%210%
get_LabelId()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Labels/Entities/WorkflowDefinitionLabel.cs

#LineLine coverage
 1using Elsa.Common.Entities;
 2
 3namespace Elsa.Labels.Entities;
 4
 5/// <summary>
 6/// Represents a lookup between a label and a workflow definition.
 7/// </summary>
 8public class WorkflowDefinitionLabel : Entity
 9{
 010    public string WorkflowDefinitionId { get; set; } = default!;
 011    public string WorkflowDefinitionVersionId { get; set; } = default!;
 012    public string LabelId { get; set; } = default!;
 13}