< Summary

Information
Class: MRA.Infrastructure.Settings.Options.FirebaseSettings
Assembly: MRA.Infrastructure
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\Settings\Sections\FirebaseSettings.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
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_CredentialsPath()100%11100%
get_ProjectID()100%11100%
get_Environment()100%11100%
get_CollectionDrawings()100%11100%
get_CollectionInspirations()100%11100%
get_CollectionCollections()100%11100%
get_CollectionExperience()100%11100%

File(s)

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

#LineLine coverage
 1
 2namespace MRA.Infrastructure.Settings.Options;
 3
 4public class FirebaseSettings
 5{
 26    public string CredentialsPath { get; set; }
 27    public string ProjectID { get; set; }
 28    public string Environment { get; set; }
 19    public string CollectionDrawings { get; set; }
 110    public string CollectionInspirations { get; set; }
 111    public string CollectionCollections { get; set; }
 112    public string CollectionExperience { get; set; }
 13}