< Summary

Information
Class: Elsa.Workflows.UIHints.Dropdown.DropDownProps
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/UIHints/Dropdown/DropDownProps.cs
Line coverage
50%
Covered lines: 1
Uncovered lines: 1
Coverable lines: 2
Total lines: 17
Line coverage: 50%
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_SelectList()100%11100%
get_ProviderName()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/UIHints/Dropdown/DropDownProps.cs

#LineLine coverage
 1namespace Elsa.Workflows.UIHints.Dropdown;
 2
 3/// <summary>
 4/// Provides properties for the <see cref="InputUIHints.DropDown"/> UI hint.
 5/// </summary>
 6public class DropDownProps
 7{
 8    /// <summary>
 9    /// The select list.
 10    /// </summary>
 165211    public SelectList? SelectList { get; set; }
 12
 13    /// <summary>
 14    /// The name of the provider that will provide the select list.
 15    /// </summary>
 016    public string? ProviderName { get; set; }
 17}