< 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: 19
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

0255075100

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    [Common.RequiresSourceSerialisation]
 8    public class PhotoAlbum : Folder
 9    {
 10        [JsonIgnore]
 011        public override bool AlwaysScanInternalMetadataPath => true;
 12
 13        [JsonIgnore]
 014        public override bool SupportsPlayedStatus => false;
 15
 16        [JsonIgnore]
 017        public override bool SupportsInheritedParentImages => false;
 18    }
 19}