13 references to HostingModel
Microsoft.AspNetCore.Server.IntegrationTesting (13)
Common\DeploymentParameters.cs (1)
159public HostingModel HostingModel { get; set; }
TestMatrix.cs (9)
17public IList<HostingModel> HostingModels { get; set; } = new List<HostingModel>(); 67public TestMatrix WithHostingModels(params HostingModel[] models) 75HostingModels.Add(HostingModel.OutOfProcess); 76HostingModels.Add(HostingModel.InProcess); 84public TestMatrix WithAncmV2InProcess() => WithHostingModels(HostingModel.InProcess); 114HostingModels.Add(HostingModel.OutOfProcess); 269foreach (var hostingModel in HostingModels) 272if (hostingModel == HostingModel.InProcess)
TestVariant.cs (3)
18public HostingModel HostingModel { get; set; } 38info.AddValue(nameof(HostingModel), HostingModel, typeof(HostingModel)); 48HostingModel = info.GetValue<HostingModel>(nameof(HostingModel));