3 writes to Architecture
Microsoft.AspNetCore.Server.IntegrationTesting (3)
TestMatrix.cs (2)
241Architecture = arch, 291Architecture = arch,
TestVariant.cs (1)
47Architecture = info.GetValue<RuntimeArchitecture>(nameof(Architecture));
11 references to Architecture
Microsoft.AspNetCore.Server.IntegrationTesting (5)
Common\DeploymentParameters.cs (1)
38RuntimeArchitecture = variant.Architecture;
TestVariant.cs (4)
23var description = $"Server: {Server}, TFM: {Tfm}, Type: {ApplicationType}, Arch: {Architecture}"; 37info.AddValue(nameof(Architecture), Architecture, typeof(RuntimeArchitecture)); 47Architecture = info.GetValue<RuntimeArchitecture>(nameof(Architecture));
ServerComparison.FunctionalTests (6)
HelloWorldTest.cs (3)
37var testName = $"HelloWorld_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}"; 72string expectedName = Enum.GetName(typeof(RuntimeArchitecture), variant.Architecture); 126var testName = $"ApplicationException_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}";
NtlmAuthenticationTest.cs (1)
34var testName = $"NtlmAuthentication_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}";
ResponseCompressionTests.cs (1)
88testName = $"{testName}_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}";
ResponseTests.cs (1)
81testName = $"{testName}_{variant.Server}_{variant.Tfm}_{variant.Architecture}_{variant.ApplicationType}";