< Summary

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

File(s)

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

#LineLine coverage
 1namespace Elsa.Workflows.Models;
 2
 3/// <summary>
 4/// A definition of a workflow's input.
 5/// </summary>
 6public class InputDefinition : ArgumentDefinition
 7{
 8    /// <summary>
 9    /// The UI hint to use for this input.
 10    /// </summary>
 18311    public string UIHint { get; set; } = default!;
 12
 13    /// <summary>
 14    /// The type of the storage driver to use for this input.
 15    /// </summary>
 21716    public Type? StorageDriverType { get; set; }
 17}