< 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: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 19
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%

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("--competition")]
 13    [Description("Competition identifier (defaults from community context, e.g., fifa-world-cup-2026 for ehonda-dev-wm26
 14    public string? Competition { get; set; }
 15
 16    [CommandOption("-v|--verbose")]
 17    [Description("Enable verbose output")]
 18    public bool Verbose { get; set; } = false;
 19}

Methods/Properties

.ctor()