< Summary - Jellyfin

Information
Class: MediaBrowser.Model.SyncPlay.SyncPlayGroupJoinedUpdate
Assembly: MediaBrowser.Model
File(s): /srv/git/jellyfin/MediaBrowser.Model/SyncPlay/SyncPlayGroupJoinedUpdate.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 3/26/2026 - 12:14:14 AM Line coverage: 0% (0/3) Total lines: 217/3/2026 - 12:15:32 AM Line coverage: 100% (3/3) Total lines: 21

Coverage delta

Coverage delta 100 -100

Metrics

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

File(s)

/srv/git/jellyfin/MediaBrowser.Model/SyncPlay/SyncPlayGroupJoinedUpdate.cs

#LineLine coverage
 1using System;
 2using System.ComponentModel;
 3
 4namespace MediaBrowser.Model.SyncPlay;
 5
 6/// <inheritdoc />
 7public class SyncPlayGroupJoinedUpdate : GroupUpdate<GroupInfoDto>
 8{
 9    /// <summary>
 10    /// Initializes a new instance of the <see cref="SyncPlayGroupJoinedUpdate"/> class.
 11    /// </summary>
 12    /// <param name="groupId">The groupId.</param>
 13    /// <param name="data">The data.</param>
 114    public SyncPlayGroupJoinedUpdate(Guid groupId, GroupInfoDto data) : base(groupId, data)
 15    {
 116    }
 17
 18    /// <inheritdoc />
 19    [DefaultValue(GroupUpdateType.GroupJoined)]
 120    public override GroupUpdateType Type => GroupUpdateType.GroupJoined;
 21}