mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
Improve branch coverage
This commit is contained in:
27
tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs
Normal file
27
tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
using System;
|
||||
using MediaBrowser.Common.Configuration;
|
||||
using MediaBrowser.Common.Plugins;
|
||||
using MediaBrowser.Model.Plugins;
|
||||
using MediaBrowser.Model.Serialization;
|
||||
|
||||
namespace Jellyfin.Api.Tests
|
||||
{
|
||||
public class TestPluginWithoutPages : BasePlugin<BasePluginConfiguration>
|
||||
{
|
||||
public TestPluginWithoutPages(IApplicationPaths applicationPaths, IXmlSerializer xmlSerializer)
|
||||
: base(applicationPaths, xmlSerializer)
|
||||
{
|
||||
Instance = this;
|
||||
}
|
||||
|
||||
public static TestPluginWithoutPages? Instance { get; private set; }
|
||||
|
||||
public override Guid Id => new Guid("ae95cbe6-bd3d-4d73-8596-490db334611e");
|
||||
|
||||
public override string Name => nameof(TestPluginWithoutPages);
|
||||
|
||||
public override string Description => "Server test Plugin without web pages.";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user