< Summary - Jellyfin

Information
Class: MediaBrowser.Model.MediaInfo.SubtitleTrackInfo
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/MediaInfo/SubtitleTrackInfo.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 17
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 4/15/2026 - 12:14:34 AM Line coverage: 100% (2/2) Total lines: 177/21/2026 - 12:16:33 AM Line coverage: 0% (0/2) Total lines: 17

Coverage delta

Coverage delta 100 -100

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%210%

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        {
 012            TrackEvents = Array.Empty<SubtitleTrackEvent>();
 013        }
 14
 15        public IReadOnlyList<SubtitleTrackEvent> TrackEvents { get; set; }
 16    }
 17}

Methods/Properties

.ctor()