1 type derived from DeploymentResult
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
IISDeploymentResult.cs (1)
10public class IISDeploymentResult : DeploymentResult, IDisposable
3 instantiations of DeploymentResult
Microsoft.AspNetCore.Server.IntegrationTesting (3)
Deployers\NginxDeployer.cs (1)
92return new DeploymentResult(
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (1)
101return new DeploymentResult(
Deployers\SelfHostDeployer.cs (1)
69return new DeploymentResult(
32 references to DeploymentResult
IIS.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
97public static void ModifyWebConfig(this DeploymentResult deploymentResult, Action<XElement> action)
IIS.LongTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
97public static void ModifyWebConfig(this DeploymentResult deploymentResult, Action<XElement> action)
IIS.NewHandler.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
97public static void ModifyWebConfig(this DeploymentResult deploymentResult, Action<XElement> action)
IIS.NewShim.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
97public static void ModifyWebConfig(this DeploymentResult deploymentResult, Action<XElement> action)
IIS.ShadowCopy.Tests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
97public static void ModifyWebConfig(this DeploymentResult deploymentResult, Action<XElement> action)
IISExpress.FunctionalTests (3)
OutOfProcess\MultipleAppTests.cs (2)
32var deploymentResults = new List<DeploymentResult>(); 46foreach (var deploymentResult in deploymentResults)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
97public static void ModifyWebConfig(this DeploymentResult deploymentResult, Action<XElement> action)
Microsoft.AspNetCore.FunctionalTests (4)
WebHostFunctionalTests.cs (4)
164var deploymentResult = await deployer.DeployAsync(); 184private async Task ExecuteStartOrStartWithTest(Func<DeploymentResult, Task<HttpResponseMessage>> getResponse, string applicationName) 205Func<DeploymentResult, ILogger, Task> assertAction, 221var deploymentResult = await deployer.DeployAsync();
Microsoft.AspNetCore.Hosting.FunctionalTests (2)
LinkedApplicationTests.cs (1)
41var result = await deployer.DeployAsync();
WebHostBuilderTests.cs (1)
50var deploymentResult = await deployer.DeployAsync();
Microsoft.AspNetCore.Server.HttpSys.NonHelixTests (1)
DelegateOutOfProcTests.cs (1)
46var deploymentResult = await deployer.DeployAsync().DefaultTimeout();
Microsoft.AspNetCore.Server.IntegrationTesting (5)
Common\DeploymentParameters.cs (1)
106/// different than this. Use <see cref="DeploymentResult.ApplicationBaseUri"/> for the
Deployers\ApplicationDeployer.cs (1)
73public abstract Task<DeploymentResult> DeployAsync();
Deployers\NginxDeployer.cs (1)
28public override async Task<DeploymentResult> DeployAsync()
Deployers\RemoteWindowsDeployer\RemoteWindowsDeployer.cs (1)
73public override async Task<DeploymentResult> DeployAsync()
Deployers\SelfHostDeployer.cs (1)
32public override async Task<DeploymentResult> DeployAsync()
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (3)
IISDeployer.cs (2)
73public override Task<DeploymentResult> DeployAsync() 117return Task.FromResult<DeploymentResult>(new IISDeploymentResult(
IISExpressDeployer.cs (1)
43public override async Task<DeploymentResult> DeployAsync()
Microsoft.AspNetCore.WebSockets.ConformanceTests (4)
Autobahn\AutobahnTester.cs (4)
16private readonly List<DeploymentResult> _deployments = new List<DeploymentResult>(); 81foreach (var deployment in _deployments) 145var result = await deployer.DeployAsync();
ServerComparison.FunctionalTests (5)
HelloWorldTest.cs (2)
61var deploymentResult = await deployer.DeployAsync(); 147var deploymentResult = await deployer.DeployAsync();
NtlmAuthenticationTest.cs (1)
47var deploymentResult = await deployer.DeployAsync();
ResponseCompressionTests.cs (1)
136var deploymentResult = await deployer.DeployAsync();
ResponseTests.cs (1)
101var deploymentResult = await deployer.DeployAsync();