< Summary

Information
Class: MRA.Infrastructure.RemoteConfig.RemoteConfigSetting<T>
Assembly: MRA.Infrastructure
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\RemoteConfig\RemoteConfigSetting.cs
Line coverage
100%
Covered lines: 6
Uncovered lines: 0
Coverable lines: 6
Total lines: 13
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_Key()100%11100%
get_DefaultValue()100%11100%
.ctor(...)100%11100%

File(s)

D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\RemoteConfig\RemoteConfigSetting.cs

#LineLine coverage
 1namespace MRA.Infrastructure.RemoteConfig;
 2
 3public class RemoteConfigSetting<T>
 4{
 55    public RemoteConfigKey Key { get; private set; }
 56    public T DefaultValue { get; private set; }
 7
 58    public RemoteConfigSetting(RemoteConfigKey key, T defaultValue)
 9    {
 510        Key = key;
 511        DefaultValue = defaultValue;
 512    }
 13}