< Summary

Information
Class: Elsa.Api.Client.Shared.UIHints.CheckList.CheckListItem
Assembly: Elsa.Api.Client
File(s): /home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/UIHints/CheckList/CheckListItem.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_Text()100%210%
get_Value()100%210%
get_IsChecked()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/clients/Elsa.Api.Client/Shared/UIHints/CheckList/CheckListItem.cs

#LineLine coverage
 1namespace Elsa.Api.Client.Shared.UIHints.CheckList;
 2
 3/// <summary>
 4/// Represents an item in a <see cref="CheckList"/>.
 5/// </summary>
 6public class CheckListItem
 7{
 8#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider de
 09    public string Text { get; set; }
 010    public string Value { get; set; }
 11#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider de
 012    public bool IsChecked { get; set; }
 13}