* chore: Fix XML warnings * docs: Fix XML warnings * docs: Fix XML in resource designer * docs: Fix XML warnings * Revert "docs: Fix XML in resource designer" This reverts commit 8ea61c51ac161e1853ae080db7fe1b4d4cb4d2be.
34 lines
998 B
C#
34 lines
998 B
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using Microsoft.AspNetCore.Mvc.Testing;
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
namespace Umbraco.Cms.Tests.Integration.TestServerTest;
|
|
|
|
public class UmbracoWebApplicationFactory<TStartup> : WebApplicationFactory<TStartup>
|
|
where TStartup : class
|
|
{
|
|
private readonly Action<IHost> _beforeStart;
|
|
private readonly Func<IHostBuilder> _createHostBuilder;
|
|
|
|
/// <summary>
|
|
/// Constructor to create a new WebApplicationFactory
|
|
/// </summary>
|
|
/// <param name="createHostBuilder">Method to create the IHostBuilder</param>
|
|
public UmbracoWebApplicationFactory(Func<IHostBuilder> createHostBuilder) => _createHostBuilder = createHostBuilder;
|
|
|
|
protected override IHostBuilder CreateHostBuilder() => _createHostBuilder();
|
|
|
|
protected override IHost CreateHost(IHostBuilder builder)
|
|
{
|
|
var host = builder.Build();
|
|
|
|
_beforeStart?.Invoke(host);
|
|
|
|
host.Start();
|
|
|
|
return host;
|
|
}
|
|
}
|