< Summary - Jellyfin

Information
Class: MediaBrowser.Model.IO.FileSystemEntryInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/IO/FileSystemEntryInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 39
Line coverage: 0%
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%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/IO/FileSystemEntryInfo.cs

#LineLine coverage
 1namespace MediaBrowser.Model.IO
 2{
 3    /// <summary>
 4    /// Class FileSystemEntryInfo.
 5    /// </summary>
 6    public class FileSystemEntryInfo
 7    {
 8        /// <summary>
 9        /// Initializes a new instance of the <see cref="FileSystemEntryInfo" /> class.
 10        /// </summary>
 11        /// <param name="name">The filename.</param>
 12        /// <param name="path">The file path.</param>
 13        /// <param name="type">The file type.</param>
 14        public FileSystemEntryInfo(string name, string path, FileSystemEntryType type)
 15        {
 16            Name = name;
 17            Path = path;
 18            Type = type;
 019        }
 20
 21        /// <summary>
 22        /// Gets the name.
 23        /// </summary>
 24        /// <value>The name.</value>
 25        public string Name { get; }
 26
 27        /// <summary>
 28        /// Gets the path.
 29        /// </summary>
 30        /// <value>The path.</value>
 31        public string Path { get; }
 32
 33        /// <summary>
 34        /// Gets the type.
 35        /// </summary>
 36        /// <value>The type.</value>
 37        public FileSystemEntryType Type { get; }
 38    }
 39}