< Summary - Jellyfin

Information
Class: Jellyfin.Server.Migrations.MigrationsListStore
Assembly: jellyfin
File(s): /srv/git/jellyfin/Jellyfin.Server/Migrations/MigrationsListStore.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 24
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
.cctor()100%11100%
.ctor()100%11100%

File(s)

/srv/git/jellyfin/Jellyfin.Server/Migrations/MigrationsListStore.cs

#LineLine coverage
 1using MediaBrowser.Common.Configuration;
 2
 3namespace Jellyfin.Server.Migrations
 4{
 5    /// <summary>
 6    /// A configuration that lists all the migration routines that were applied.
 7    /// </summary>
 8    public class MigrationsListStore : ConfigurationStore
 9    {
 10        /// <summary>
 11        /// The name of the configuration in the storage.
 12        /// </summary>
 113        public static readonly string StoreKey = "migrations";
 14
 15        /// <summary>
 16        /// Initializes a new instance of the <see cref="MigrationsListStore"/> class.
 17        /// </summary>
 2218        public MigrationsListStore()
 19        {
 2220            ConfigurationType = typeof(MigrationOptions);
 2221            Key = StoreKey;
 2222        }
 23    }
 24}

Methods/Properties

.cctor()
.ctor()