diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-03-01 18:51:09 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-01 18:51:09 +0100 |
| commit | c2af32d035352d333c3e2852d25fde51f984006b (patch) | |
| tree | e01cb055fa19cd367174afb4e91062abd2de2da6 /tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs | |
| parent | 557a2ad7158b14ae97fa503a551ed17251b97ca0 (diff) | |
| parent | 2bc1eef4ddb23385f90c8bfc6af2ecf9888d7879 (diff) | |
Merge pull request #5299 from Bond-009/tests13
Diffstat (limited to 'tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs')
| -rw-r--r-- | tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs b/tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs new file mode 100644 index 000000000..2d2f78a98 --- /dev/null +++ b/tests/Jellyfin.Api.Tests/TestPluginWithoutPages.cs @@ -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."; + } +} |
