< Summary

Information
Class: UIBlazor.Options.CommonOptions
Assembly: UIBlazor
File(s): /home/runner/work/InvAit/InvAit/UIBlazor/Options/CommonOptions.cs
Tag: 14_22728831704
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 16
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_ToolTimeoutMs()100%11100%
get_SendCurrentFile()100%11100%
get_SendSolutionsStricture()100%11100%
get_Culture()100%11100%
get_MaxRetries()100%11100%

File(s)

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

#LineLine coverage
 1using System.Globalization;
 2
 3namespace UIBlazor.Options;
 4
 5public class CommonOptions : BaseOptions
 6{
 27    public int ToolTimeoutMs { get; set => SetIfChanged(ref field, value); } = 3_000;
 8
 29    public bool SendCurrentFile { get; set => SetIfChanged(ref field, value); } = true;
 10
 211    public bool SendSolutionsStricture { get; set => SetIfChanged(ref field, value); } = true;
 12
 1013    public string Culture { get; set => SetIfChanged(ref field, value); } = CultureInfo.CurrentCulture.Name;
 14
 215    public int MaxRetries { get; set => SetIfChanged(ref field, value); } = 10;
 16}