< Summary - Jellyfin

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

Metrics

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

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>
 014    public SyncPlayGroupJoinedUpdate(Guid groupId, GroupInfoDto data) : base(groupId, data)
 15    {
 016    }
 17
 18    /// <inheritdoc />
 19    [DefaultValue(GroupUpdateType.GroupJoined)]
 020    public override GroupUpdateType Type => GroupUpdateType.GroupJoined;
 21}