< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Configuration.MetadataConfiguration
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Configuration/MetadataConfiguration.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 14
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

Coverage history

Coverage history 0 25 50 75 100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Configuration/MetadataConfiguration.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3namespace MediaBrowser.Model.Configuration
 4{
 5    public class MetadataConfiguration
 6    {
 7        public MetadataConfiguration()
 8        {
 229            UseFileCreationTimeForDateAdded = true;
 2210        }
 11
 12        public bool UseFileCreationTimeForDateAdded { get; set; }
 13    }
 14}

Methods/Properties

.ctor()