< Summary

Information
Class: Orchestrator.Commands.Utility.ListKpi.ListKpiSettings
Assembly: Orchestrator
File(s): /home/runner/work/KicktippAi/KicktippAi/src/Orchestrator/Commands/Utility/ListKpi/ListKpiSettings.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 15
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_CommunityContext()100%11100%
set_CommunityContext(...)100%11100%
.ctor()100%11100%
get_Verbose()100%11100%
set_Verbose(...)100%11100%

File(s)

/home/runner/work/KicktippAi/KicktippAi/src/Orchestrator/Commands/Utility/ListKpi/ListKpiSettings.cs

#LineLine coverage
 1using Spectre.Console.Cli;
 2using System.ComponentModel;
 3
 4namespace Orchestrator.Commands.Utility.ListKpi;
 5
 6public class ListKpiSettings : CommandSettings
 7{
 8    [CommandOption("-c|--community-context <COMMUNITY_CONTEXT>")]
 9    [Description("The community context to filter by (required)")]
 110    public required string CommunityContext { get; set; } = string.Empty;
 11
 12    [CommandOption("-v|--verbose")]
 13    [Description("Enable verbose output")]
 114    public bool Verbose { get; set; } = false;
 15}