< Summary - Jellyfin

Information
Class: MediaBrowser.Controller.Entities.PhotoAlbum
Assembly: MediaBrowser.Controller
File(s): /srv/git/jellyfin/MediaBrowser.Controller/Entities/PhotoAlbum.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 3
Coverable lines: 3
Total lines: 18
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
get_AlwaysScanInternalMetadataPath()100%210%
get_SupportsPlayedStatus()100%210%
get_SupportsInheritedParentImages()100%210%

File(s)

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

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System.Text.Json.Serialization;
 4
 5namespace MediaBrowser.Controller.Entities
 6{
 7    public class PhotoAlbum : Folder
 8    {
 9        [JsonIgnore]
 010        public override bool AlwaysScanInternalMetadataPath => true;
 11
 12        [JsonIgnore]
 013        public override bool SupportsPlayedStatus => false;
 14
 15        [JsonIgnore]
 016        public override bool SupportsInheritedParentImages => false;
 17    }
 18}