< Summary - Jellyfin

Information
Class: MediaBrowser.Providers.Plugins.ComicVine.ComicVinePersonExternalId
Assembly: MediaBrowser.Providers
File(s): /srv/git/jellyfin/MediaBrowser.Providers/Plugins/ComicVine/ComicVinePersonExternalId.cs
Line coverage
25%
Covered lines: 1
Uncovered lines: 3
Coverable lines: 4
Total lines: 23
Line coverage: 25%
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 3/24/2026 - 12:13:40 AM Line coverage: 25% (1/4) Total lines: 23

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_ProviderName()100%11100%
get_Key()100%210%
get_Type()100%210%
Supports(...)100%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Providers/Plugins/ComicVine/ComicVinePersonExternalId.cs

#LineLine coverage
 1using MediaBrowser.Controller.Entities;
 2using MediaBrowser.Controller.Providers;
 3using MediaBrowser.Model.Entities;
 4using MediaBrowser.Model.Providers;
 5
 6namespace MediaBrowser.Providers.Plugins.ComicVine
 7{
 8    /// <inheritdoc />
 9    public class ComicVinePersonExternalId : IExternalId
 10    {
 11        /// <inheritdoc />
 2112        public string ProviderName => "Comic Vine";
 13
 14        /// <inheritdoc />
 015        public string Key => "ComicVine";
 16
 17        /// <inheritdoc />
 018        public ExternalIdMediaType? Type => ExternalIdMediaType.Person;
 19
 20        /// <inheritdoc />
 021        public bool Supports(IHasProviderIds item) => item is Person;
 22    }
 23}