< Summary - Jellyfin

Information
Class: MediaBrowser.Model.Entities.ParentalRating
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/Entities/ParentalRating.cs
Line coverage
100%
Covered lines: 4
Uncovered lines: 0
Coverable lines: 4
Total lines: 40
Line coverage: 100%
Branch coverage
100%
Covered branches: 2
Total branches: 2
Branch coverage: 100%
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%22100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/Entities/ParentalRating.cs

#LineLine coverage
 1namespace MediaBrowser.Model.Entities;
 2
 3/// <summary>
 4/// Class ParentalRating.
 5/// </summary>
 6public class ParentalRating
 7{
 8    /// <summary>
 9    /// Initializes a new instance of the <see cref="ParentalRating"/> class.
 10    /// </summary>
 11    /// <param name="name">The name.</param>
 12    /// <param name="score">The score.</param>
 13    public ParentalRating(string name, ParentalRatingScore? score)
 14    {
 8015        Name = name;
 8016        Value = score?.Score;
 8017        RatingScore = score;
 8018    }
 19
 20    /// <summary>
 21    /// Gets or sets the name.
 22    /// </summary>
 23    /// <value>The name.</value>
 24    public string Name { get; set; }
 25
 26    /// <summary>
 27    /// Gets or sets the value.
 28    /// </summary>
 29    /// <value>The value.</value>
 30    /// <remarks>
 31    /// Deprecated.
 32    /// </remarks>
 33    public int? Value { get; set; }
 34
 35    /// <summary>
 36    /// Gets or sets the rating score.
 37    /// </summary>
 38    /// <value>The rating score.</value>
 39    public ParentalRatingScore? RatingScore { get; set; }
 40}