< Summary - Jellyfin

Information
Class: MediaBrowser.Providers.Plugins.AudioDb.AudioDbOtherArtistExternalId
Assembly: MediaBrowser.Providers
File(s): /srv/git/jellyfin/MediaBrowser.Providers/Plugins/AudioDb/AudioDbOtherArtistExternalId.cs
Line coverage
25%
Covered lines: 1
Uncovered lines: 3
Coverable lines: 4
Total lines: 24
Line coverage: 25%
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
get_ProviderName()100%11100%
get_Key()100%210%
get_Type()100%210%
Supports(...)0%620%

File(s)

/srv/git/jellyfin/MediaBrowser.Providers/Plugins/AudioDb/AudioDbOtherArtistExternalId.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using MediaBrowser.Controller.Entities.Audio;
 4using MediaBrowser.Controller.Providers;
 5using MediaBrowser.Model.Entities;
 6using MediaBrowser.Model.Providers;
 7
 8namespace MediaBrowser.Providers.Plugins.AudioDb
 9{
 10    public class AudioDbOtherArtistExternalId : IExternalId
 11    {
 12        /// <inheritdoc />
 2113        public string ProviderName => "TheAudioDb";
 14
 15        /// <inheritdoc />
 016        public string Key => MetadataProvider.AudioDbArtist.ToString();
 17
 18        /// <inheritdoc />
 019        public ExternalIdMediaType? Type => ExternalIdMediaType.OtherArtist;
 20
 21        /// <inheritdoc />
 022        public bool Supports(IHasProviderIds item) => item is Audio || item is MusicAlbum;
 23    }
 24}