af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
// <copyright file="TestAppHost.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Server.Integration.Tests
|
|
{
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using Emby.Server.Implementations;
|
|
using MediaBrowser.Controller;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
/// <summary>
|
|
/// Implementation of the abstract <see cref="ApplicationHost" /> class.
|
|
/// </summary>
|
|
public class TestAppHost : CoreAppHost
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="TestAppHost" /> class.
|
|
/// </summary>
|
|
/// <param name="applicationPaths">The <see cref="ServerApplicationPaths" /> to be used by the <see cref="CoreAppHost" />.</param>
|
|
/// <param name="loggerFactory">The <see cref="ILoggerFactory" /> to be used by the <see cref="CoreAppHost" />.</param>
|
|
/// <param name="options">The <see cref="StartupOptions" /> to be used by the <see cref="CoreAppHost" />.</param>
|
|
/// <param name="startup">The <see cref="IConfiguration" /> to be used by the <see cref="CoreAppHost" />.</param>
|
|
public TestAppHost(
|
|
IServerApplicationPaths applicationPaths,
|
|
ILoggerFactory loggerFactory,
|
|
IStartupOptions options,
|
|
IConfiguration startup)
|
|
: base(
|
|
applicationPaths,
|
|
loggerFactory,
|
|
options,
|
|
startup)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override IEnumerable<Assembly> GetAssembliesWithPartsInternal()
|
|
{
|
|
foreach (var a in base.GetAssembliesWithPartsInternal())
|
|
{
|
|
yield return a;
|
|
}
|
|
|
|
yield return typeof(TestPlugin).Assembly;
|
|
}
|
|
}
|
|
}
|