< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.PersonInfo
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/PersonInfo.cs
Line coverage
60%
Covered lines: 3
Uncovered lines: 2
Coverable lines: 5
Total lines: 69
Line coverage: 60%
Branch coverage
0%
Covered branches: 0
Total branches: 2
Branch coverage: 0%
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%
ToString()100%210%
IsType(...)0%620%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Entities/PersonInfo.cs

#LineLine coverage
 1#nullable disable
 2
 3#pragma warning disable CA2227, CS1591
 4
 5using System;
 6using System.Collections.Generic;
 7using Jellyfin.Data.Enums;
 8using MediaBrowser.Model.Entities;
 9
 10namespace MediaBrowser.Controller.Entities
 11{
 12    /// <summary>
 13    /// This is a small Person stub that is attached to BaseItems.
 14    /// </summary>
 15    public sealed class PersonInfo : IHasProviderIds
 16    {
 17        public PersonInfo()
 18        {
 7319            ProviderIds = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
 7320            Id = Guid.NewGuid();
 7321        }
 22
 23        /// <summary>
 24        /// Gets or Sets the PersonId.
 25        /// </summary>
 26        public Guid Id { get; set; }
 27
 28        public Guid ItemId { get; set; }
 29
 30        /// <summary>
 31        /// Gets or sets the name.
 32        /// </summary>
 33        /// <value>The name.</value>
 34        public string Name { get; set; }
 35
 36        /// <summary>
 37        /// Gets or sets the role.
 38        /// </summary>
 39        /// <value>The role.</value>
 40        public string Role { get; set; }
 41
 42        /// <summary>
 43        /// Gets or sets the type.
 44        /// </summary>
 45        /// <value>The type.</value>
 46        public PersonKind Type { get; set; }
 47
 48        /// <summary>
 49        /// Gets or sets the ascending sort order.
 50        /// </summary>
 51        /// <value>The sort order.</value>
 52        public int? SortOrder { get; set; }
 53
 54        public string ImageUrl { get; set; }
 55
 56        public Dictionary<string, string> ProviderIds { get; set; }
 57
 58        /// <summary>
 59        /// Returns a <see cref="string" /> that represents this instance.
 60        /// </summary>
 61        /// <returns>A <see cref="string" /> that represents this instance.</returns>
 62        public override string ToString()
 63        {
 064            return Name;
 65        }
 66
 067        public bool IsType(PersonKind type) => Type == type || string.Equals(type.ToString(), Role, StringComparison.Ord
 68    }
 69}