< Summary - Jellyfin

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

Coverage history

Coverage history 0 25 50 75 100

Metrics

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

File(s)

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

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3namespace MediaBrowser.Model.Configuration
 4{
 5    public class MediaPathInfo
 6    {
 7        public MediaPathInfo(string path)
 8        {
 29            Path = path;
 210        }
 11
 12        // Needed for xml serialization
 13        public MediaPathInfo()
 14        {
 115            Path = string.Empty;
 116        }
 17
 18        public string Path { get; set; }
 19    }
 20}

Methods/Properties

.ctor(System.String)
.ctor()