< Summary

Information
Class: Orchestrator.Commands.Operations.Verify.VerifySettings
Assembly: Orchestrator
File(s): /home/runner/work/KicktippAi/KicktippAi/src/Orchestrator/Commands/Operations/Verify/VerifySettings.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 39
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_Model()100%11100%
set_Model(...)100%11100%
.ctor()100%11100%
get_Community()100%11100%
set_Community(...)100%11100%
get_CommunityContext()100%11100%
set_CommunityContext(...)100%11100%
get_Verbose()100%11100%
set_Verbose(...)100%11100%
get_Agent()100%11100%
set_Agent(...)100%11100%
get_InitMatchday()100%11100%
set_InitMatchday(...)100%11100%
get_CheckOutdated()100%11100%
set_CheckOutdated(...)100%11100%

File(s)

/home/runner/work/KicktippAi/KicktippAi/src/Orchestrator/Commands/Operations/Verify/VerifySettings.cs

#LineLine coverage
 1using System.ComponentModel;
 2using Spectre.Console.Cli;
 3
 4namespace Orchestrator.Commands.Operations.Verify;
 5
 6public class VerifySettings : CommandSettings
 7{
 8    [CommandArgument(0, "<MODEL>")]
 9    [Description("The OpenAI model to verify predictions for (e.g., gpt-4o-2024-08-06, o4-mini)")]
 110    public string Model { get; set; } = string.Empty;
 11
 12    [CommandOption("-c|--community")]
 13    [Description("The Kicktipp community to use (e.g., ehonda-test-buli)")]
 114    public required string Community { get; set; }
 15
 16    [CommandOption("--community-context")]
 17    [Description("The community context for filtering predictions (defaults to community name if not specified)")]
 118    public string? CommunityContext { get; set; }
 19
 20    [CommandOption("-v|--verbose")]
 21    [Description("Enable verbose output to show detailed information")]
 22    [DefaultValue(false)]
 123    public bool Verbose { get; set; }
 24
 25    [CommandOption("--agent")]
 26    [Description("Agent mode - hide prediction details from output (for automated environments)")]
 27    [DefaultValue(false)]
 128    public bool Agent { get; set; }
 29
 30    [CommandOption("--init-matchday")]
 31    [Description("Init matchday mode - return error when no predictions exist to trigger initial prediction workflow")]
 32    [DefaultValue(false)]
 133    public bool InitMatchday { get; set; }
 34
 35    [CommandOption("--check-outdated")]
 36    [Description("Check if predictions are outdated based on context document changes")]
 37    [DefaultValue(false)]
 138    public bool CheckOutdated { get; set; }
 39}