< Summary

Information
Class: Elsa.Workflows.Models.OutputBindingDestination
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/OutputBindingDestination.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 10
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%
get_Id()100%11100%
get_Type()100%11100%
get_AllowsNull()100%11100%
get_Kind()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/OutputBindingDestination.cs

#LineLine coverage
 1namespace Elsa.Workflows.Models;
 2
 3/// <summary>
 4/// Describes the declared destination of an output binding.
 5/// </summary>
 236public sealed record OutputBindingDestination(
 137    string Id,
 488    Type Type,
 99    bool AllowsNull,
 2710    OutputBindingDestinationKind Kind);