< Summary - Jellyfin

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

#LineLine coverage
 1#pragma warning disable CS1591
 2
 3namespace MediaBrowser.Model.MediaInfo
 4{
 5    public class SubtitleTrackEvent
 6    {
 7        public SubtitleTrackEvent(string id, string text)
 8        {
 159            Id = id;
 1510            Text = text;
 1511        }
 12
 13        public string Id { get; set; }
 14
 15        public string Text { get; set; }
 16
 17        public long StartPositionTicks { get; set; }
 18
 19        public long EndPositionTicks { get; set; }
 20    }
 21}