< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Providers.ArtistInfo
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Providers/ArtistInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 16
Line coverage: 0%
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%210%

File(s)

/srv/git/jellyfin/MediaBrowser.Controller/Providers/ArtistInfo.cs

#LineLine coverage
 1#pragma warning disable CA1002, CA2227, CS1591
 2
 3using System.Collections.Generic;
 4
 5namespace MediaBrowser.Controller.Providers
 6{
 7    public class ArtistInfo : ItemLookupInfo
 8    {
 09        public ArtistInfo()
 10        {
 011            SongInfos = new List<SongInfo>();
 012        }
 13
 14        public List<SongInfo> SongInfos { get; set; }
 15    }
 16}

Methods/Properties

.ctor()