3 writes to Server
Microsoft.AspNetCore.Server.IntegrationTesting (3)
TestMatrix.cs (2)
238Server = server, 288Server = server,
TestVariant.cs (1)
44Server = info.GetValue<ServerType>(nameof(Server));
23 references to Server
Microsoft.AspNetCore.Server.IntegrationTesting (7)
Common\DeploymentParameters.cs (1)
35ServerType = variant.Server;
TestVariant.cs (6)
23var description = $"Server: {Server}, TFM: {Tfm}, Type: {ApplicationType}, Arch: {Architecture}"; 24if (Server == ServerType.IISExpress || Server == ServerType.IIS) 34info.AddValue(nameof(Server), Server, typeof(ServerType)); 44Server = info.GetValue<ServerType>(nameof(Server));
ServerComparison.FunctionalTests (16)
HelloWorldTest.cs (7)
37var testName = $"HelloWorld_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}"; 39variant.Server == ServerType.Nginx ? LogLevel.Trace : LogLevel.Debug, // https://github.com/aspnet/ServerTests/issues/144 49if (variant.Server == ServerType.Nginx) 54if (variant.Server == ServerType.IISExpress) 85switch (variant.Server) 108throw new NotImplementedException(variant.Server.ToString()); 126var testName = $"ApplicationException_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}";
NtlmAuthenticationTest.cs (2)
34var testName = $"NtlmAuthentication_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}"; 70if (variant.Server == ServerType.Kestrel)
ResponseCompressionTests.cs (4)
88testName = $"{testName}_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}"; 90variant.Server == ServerType.Nginx ? LogLevel.Trace : LogLevel.Debug, // https://github.com/aspnet/ServerTests/issues/144 101if (variant.Server == ServerType.Nginx) 107else if (variant.Server == ServerType.IISExpress && !hostCompression)
ResponseTests.cs (3)
81testName = $"{testName}_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}"; 83variant.Server == ServerType.Nginx ? LogLevel.Trace : LogLevel.Debug, // https://github.com/aspnet/ServerTests/issues/144 94if (variant.Server == ServerType.Nginx)