< Summary

Information
Class: UIBlazor.Options.ProfileOptions
Assembly: UIBlazor
File(s): /home/runner/work/InvAit/InvAit/UIBlazor/Options/ProfileOptions.cs
Tag: 14_22728831704
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 8
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_Profiles()100%11100%
get_ActiveProfileId()100%11100%

File(s)

/home/runner/work/InvAit/InvAit/UIBlazor/Options/ProfileOptions.cs

#LineLine coverage
 1namespace UIBlazor.Options;
 2
 3public class ProfileOptions : BaseOptions
 4{
 765    public List<ConnectionProfile> Profiles { get; set => SetIfChanged(ref field, value); } = [];
 6
 307    public string ActiveProfileId { get; set => SetIfChanged(ref field, value); } = null!;
 8}