< Summary

Information
Class: Shared.Contracts.VsCodeContext
Assembly: Shared
File(s): /home/runner/work/InvAit/InvAit/Shared/Contracts/VsCodeContext.cs
Tag: 71_26091983037
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
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
get_SolutionPath()100%11100%
get_SolutionFiles()100%11100%
get_ActiveFilePath()100%11100%
get_ActiveFileContent()100%11100%
get_SelectionStartLine()100%11100%
get_SelectionEndLine()100%11100%

File(s)

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

#LineLine coverage
 1namespace Shared.Contracts;
 2
 3public class VsCodeContext
 4{
 5    public const string FilePrefix = "📄";
 6    public const string DirPrefix = "📁";
 7
 768    public string SolutionPath { get; set; } = string.Empty;
 9
 19110    public List<string> SolutionFiles { get; set; } = [];
 11
 912    public string? ActiveFilePath { get; set; }
 13
 614    public string? ActiveFileContent { get; set; }
 15
 616    public int SelectionStartLine { get; set; }
 17
 618    public int SelectionEndLine { get; set; }
 19}