< Summary

Information
Class: Shared.Contracts.VsCodeContext
Assembly: Shared
File(s): /home/runner/work/InvAit/InvAit/Shared/Contracts/VsCodeContext.cs
Tag: 14_22728831704
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 14
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_SolutionFiles()100%210%
get_ActiveFilePath()100%210%
get_ActiveFileContent()100%210%
get_SelectionStartLine()100%210%
get_SelectionEndLine()100%210%

File(s)

/home/runner/work/InvAit/InvAit/Shared/Contracts/VsCodeContext.cs

#LineLine coverage
 1namespace Shared.Contracts;
 2
 3public class VsCodeContext
 4{
 05    public List<string> SolutionFiles { get; set; } = [];
 6
 07    public string ActiveFilePath { get; set; }
 8
 09    public string ActiveFileContent { get; set; }
 10
 011    public int SelectionStartLine { get; set; }
 12
 013    public int SelectionEndLine { get; set; }
 14}