< Summary - Jellyfin

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

File(s)

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

#LineLine coverage
 1using System;
 2
 3namespace MediaBrowser.Model.SyncPlay;
 4
 5/// <summary>
 6/// Group update without data.
 7/// </summary>
 8public abstract class GroupUpdate
 9{
 10    /// <summary>
 11    /// Initializes a new instance of the <see cref="GroupUpdate"/> class.
 12    /// </summary>
 13    /// <param name="groupId">The group identifier.</param>
 14    protected GroupUpdate(Guid groupId)
 15    {
 16        GroupId = groupId;
 017    }
 18
 19    /// <summary>
 20    /// Gets the group identifier.
 21    /// </summary>
 22    /// <value>The group identifier.</value>
 23    public Guid GroupId { get; }
 24
 25    /// <summary>
 26    /// Gets the update type.
 27    /// </summary>
 28    /// <value>The update type.</value>
 29    public GroupUpdateType Type { get; init; }
 30}

Methods/Properties

.ctor(System.Guid)