< Summary - Jellyfin

Information
Class: MediaBrowser.Model.MediaInfo.SubtitleTrackInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 17
Line coverage: 100%
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%11100%

File(s)

/srv/git/jellyfin/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3using System;
 4using System.Collections.Generic;
 5
 6namespace MediaBrowser.Model.MediaInfo
 7{
 8    public class SubtitleTrackInfo
 9    {
 10        public SubtitleTrackInfo()
 11        {
 512            TrackEvents = Array.Empty<SubtitleTrackEvent>();
 513        }
 14
 15        public IReadOnlyList<SubtitleTrackEvent> TrackEvents { get; set; }
 16    }
 17}

Methods/Properties

.ctor()