< Summary

Information
Class: ProjectTemplate.Infrastructure.Data.Options.DataAuditingOptions
Assembly: ProjectTemplate.Infrastructure
File(s): /home/runner/work/NetCoreApplicationTemplate/NetCoreApplicationTemplate/src/ProjectTemplate.Infrastructure/Data/Options/DataAuditingOptions.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 10
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_Enabled()100%11100%
get_StorageMode()100%11100%

File(s)

/home/runner/work/NetCoreApplicationTemplate/NetCoreApplicationTemplate/src/ProjectTemplate.Infrastructure/Data/Options/DataAuditingOptions.cs

#LineLine coverage
 1using ProjectTemplate.Infrastructure.Data.Auditing;
 2
 3namespace ProjectTemplate.Infrastructure.Data.Options;
 4
 5public sealed class DataAuditingOptions
 6{
 18467    public bool Enabled { get; init; } = true;
 8
 19869    public string StorageMode { get; init; } = AuditStorageModes.Local;
 10}

Methods/Properties

get_Enabled()
get_StorageMode()