< Summary

Information
Class: MRA.Infrastructure.Settings.Options.RemoteConfigSettings
Assembly: MRA.Infrastructure
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\Settings\Sections\RemoteConfigSettings.cs
Line coverage
100%
Covered lines: 8
Uncovered lines: 0
Coverable lines: 8
Total lines: 21
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_ConnectionString()100%11100%
get_DefaultValues()100%11100%
get_Popularity()100%11100%
get_Critic()100%11100%
get_Date()100%11100%
get_Favorite()100%11100%
get_Months()100%11100%
get_Popular()100%11100%

File(s)

D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\Settings\Sections\RemoteConfigSettings.cs

#LineLine coverage
 1namespace MRA.Infrastructure.Settings.Options;
 2
 3public class RemoteConfigSettings
 4{
 35    public string ConnectionString { get; set; }
 76    public RemoteConfigDefaultValuesOptions DefaultValues { get; set; }
 7
 8    public class RemoteConfigDefaultValuesOptions
 9    {
 710        public RemoteConfigDefaultValuesPopularityOptions Popularity { get; set; }
 11
 12        public class RemoteConfigDefaultValuesPopularityOptions
 13        {
 314            public double Critic { get; set; }
 315            public double Date { get; set; }
 316            public double Favorite { get; set; }
 317            public int Months { get; set; }
 318            public double Popular { get; set; }
 19        }
 20    }
 21}