< Summary - Jellyfin

Information
Class: Emby.Naming.TV.SeriesInfo
Assembly: Emby.Naming
File(s): /srv/git/jellyfin/Emby.Naming/TV/SeriesInfo.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 29
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/Emby.Naming/TV/SeriesInfo.cs

#LineLine coverage
 1namespace Emby.Naming.TV
 2{
 3    /// <summary>
 4    /// Holder object for Series information.
 5    /// </summary>
 6    public class SeriesInfo
 7    {
 8        /// <summary>
 9        /// Initializes a new instance of the <see cref="SeriesInfo"/> class.
 10        /// </summary>
 11        /// <param name="path">Path to the file.</param>
 12        public SeriesInfo(string path)
 13        {
 1014            Path = path;
 1015        }
 16
 17        /// <summary>
 18        /// Gets or sets the path.
 19        /// </summary>
 20        /// <value>The path.</value>
 21        public string Path { get; set; }
 22
 23        /// <summary>
 24        /// Gets or sets the name of the series.
 25        /// </summary>
 26        /// <value>The name of the series.</value>
 27        public string? Name { get; set; }
 28    }
 29}

Methods/Properties

.ctor(System.String)