< Summary

Information
Class: MRA.Infrastructure.Settings.Options.EPPlusSettings
Assembly: MRA.Infrastructure
File(s): D:\a\MiguelRomerART\MiguelRomerART\MRA.Infrastructure\Settings\Sections\EPPlusSettings.cs
Line coverage
100%
Covered lines: 7
Uncovered lines: 0
Coverable lines: 7
Total lines: 20
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_ExcelPackage()100%11100%
get_File()100%11100%
get_LicenseContext()100%11100%
get_Name()100%11100%
get_DateFormat()100%11100%
get_Extension()100%11100%
get_Path()100%11100%

File(s)

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

#LineLine coverage
 1namespace MRA.Infrastructure.Settings.Options;
 2
 3public class EPPlusSettings
 4{
 25    public ExcelPackageOptions ExcelPackage { get; set; }
 26    public FileOptions File { get; set; }
 7
 8    public class ExcelPackageOptions
 9    {
 210        public string LicenseContext { get; set; }
 11    }
 12
 13    public class FileOptions
 14    {
 215        public string Name { get; set; }
 216        public string DateFormat { get; set; }
 217        public string Extension { get; set; }
 118        public string Path { get; set; }
 19    }
 20}