3 types derived from ApplicationDeployer
Microsoft.AspNetCore.Server.IntegrationTesting (2)
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (1)
13public class RemoteWindowsDeployer : ApplicationDeployer
Deployers\SelfHostDeployer.cs (1)
15public class SelfHostDeployer : ApplicationDeployer
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISDeployerBase.cs (1)
9public abstract class IISDeployerBase : ApplicationDeployer
27 references to ApplicationDeployer
IIS.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\FunctionalTestsBase.cs (1)
22protected ApplicationDeployer CreateDeployer(IISDeploymentParameters parameters)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
17private ApplicationDeployer _deployer;
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\FunctionalTestsBase.cs (1)
22protected ApplicationDeployer CreateDeployer(IISDeploymentParameters parameters)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
17private ApplicationDeployer _deployer;
IIS.Microbenchmarks (1)
StartupTimeBenchmark.cs (1)
17private ApplicationDeployer _deployer;
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\FunctionalTestsBase.cs (1)
22protected ApplicationDeployer CreateDeployer(IISDeploymentParameters parameters)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
17private ApplicationDeployer _deployer;
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\FunctionalTestsBase.cs (1)
22protected ApplicationDeployer CreateDeployer(IISDeploymentParameters parameters)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
17private ApplicationDeployer _deployer;
IIS.ShadowCopy.Tests (2)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\FunctionalTestsBase.cs (1)
22protected ApplicationDeployer CreateDeployer(IISDeploymentParameters parameters)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
17private ApplicationDeployer _deployer;
IISExpress.FunctionalTests (4)
OutOfProcess\MultipleAppTests.cs (2)
30using (var deployers = new DisposableList<ApplicationDeployer>()) 38var deployer = CreateDeployer(deploymentParameters);
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\FunctionalTestsBase.cs (1)
22protected ApplicationDeployer CreateDeployer(IISDeploymentParameters parameters)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISTestSiteFixture.cs (1)
17private ApplicationDeployer _deployer;
Microsoft.AspNetCore.FunctionalTests (2)
WebHostFunctionalTests.cs (2)
162using (var deployer = IISApplicationDeployerFactory.Create(deploymentParameters, LoggerFactory)) 219using (var deployer = IISApplicationDeployerFactory.Create(deploymentParameters, LoggerFactory))
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Deployers\ApplicationDeployerFactory.cs (1)
20public static ApplicationDeployer Create(DeploymentParameters deploymentParameters, ILoggerFactory loggerFactory)
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
ApplicationDeployerFactory.cs (1)
20public static ApplicationDeployer Create(DeploymentParameters deploymentParameters, ILoggerFactory loggerFactory)
Microsoft.AspNetCore.WebSockets.ConformanceTests (4)
Autobahn\AutobahnTester.cs (4)
15private readonly List<ApplicationDeployer> _deployers = new List<ApplicationDeployer>(); 144var deployer = ApplicationDeployerFactory.Create(parameters, _loggerFactory); 183foreach (var deployer in _deployers)
ServerComparison.FunctionalTests (4)
HelloWorldTest.cs (1)
59using (var deployer = IISApplicationDeployerFactory.Create(deploymentParameters, loggerFactory))
NtlmAuthenticationTest.cs (1)
45using (var deployer = IISApplicationDeployerFactory.Create(deploymentParameters, loggerFactory))
ResponseCompressionTests.cs (1)
134using (var deployer = IISApplicationDeployerFactory.Create(deploymentParameters, loggerFactory))
ResponseTests.cs (1)
99using (var deployer = IISApplicationDeployerFactory.Create(deploymentParameters, loggerFactory))