< Summary

Information
Class: EHonda.KicktippAi.Core.HeadToHeadResult
Assembly: EHonda.KicktippAi.Core
File(s): /home/runner/work/KicktippAi/KicktippAi/src/Core/HeadToHeadResult.cs
Line coverage
100%
Covered lines: 9
Uncovered lines: 0
Coverable lines: 9
Total lines: 14
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%
.ctor(...)100%210%
get_League()100%11100%
set_League(...)100%210%
get_Matchday()100%11100%
set_Matchday(...)100%210%
get_PlayedAt()100%11100%
set_PlayedAt(...)100%210%
get_HomeTeam()100%11100%
set_HomeTeam(...)100%210%
get_AwayTeam()100%11100%
set_AwayTeam(...)100%210%
get_Score()100%11100%
set_Score(...)100%210%
get_Annotation()100%11100%
set_Annotation(...)100%210%

File(s)

/home/runner/work/KicktippAi/KicktippAi/src/Core/HeadToHeadResult.cs

#LineLine coverage
 1namespace EHonda.KicktippAi.Core;
 2
 3/// <summary>
 4/// Represents a head-to-head match result with detailed breakdown for CSV export
 5/// </summary>
 16public record HeadToHeadResult(
 17    string League,       // e.g., "1.BL 2024/25", "DFB 2016/17"
 18    string Matchday,     // e.g., "27. Spieltag", "2. Runde"
 19    string PlayedAt,     // Date when the match was played (if available)
 110    string HomeTeam,     // Home team name
 111    string AwayTeam,     // Away team name
 112    string Score,        // Final score, e.g., "0:1", "1:3"
 113    string? Annotation = null // e.g., "nach Elfmeterschießen", "nach Verlängerung"
 114);