1 instantiation of TestMatrix
Microsoft.AspNetCore.Server.IntegrationTesting (1)
TestMatrix.cs (1)
23return new TestMatrix()
64 references to TestMatrix
IIS.FunctionalTests (12)
src\Servers\IIS\IIS\test\Common.FunctionalTests\AspNetCorePortTests.cs (2)
43public static TestMatrix TestVariants 44=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\BasicAuthTests.cs (2)
38public static TestMatrix TestVariants 39=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (2)
44public static TestMatrix TestVariants 45=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\LoggingTests.cs (4)
39public static TestMatrix TestVariants 40=> TestMatrix.ForServers(DeployerSelector.ServerType) 45public static TestMatrix InprocessTestVariants 46=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\WindowsAuthTests.cs (2)
36public static TestMatrix TestVariants 37=> TestMatrix.ForServers(DeployerSelector.ServerType)
IIS.LongTests (2)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (2)
187public static TestMatrix TestVariants 188=> TestMatrix.ForServers(DeployerSelector.ServerType)
IIS.NewHandler.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (2)
187public static TestMatrix TestVariants 188=> TestMatrix.ForServers(DeployerSelector.ServerType)
IIS.NewShim.FunctionalTests (2)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (2)
187public static TestMatrix TestVariants 188=> TestMatrix.ForServers(DeployerSelector.ServerType)
IISExpress.FunctionalTests (16)
OutOfProcess\NtlmAuthentationTest.cs (2)
30public static TestMatrix TestVariants 31=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\AspNetCorePortTests.cs (2)
43public static TestMatrix TestVariants 44=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\BasicAuthTests.cs (2)
38public static TestMatrix TestVariants 39=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\HttpsTests.cs (2)
44public static TestMatrix TestVariants 45=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\LoggingTests.cs (4)
39public static TestMatrix TestVariants 40=> TestMatrix.ForServers(DeployerSelector.ServerType) 45public static TestMatrix InprocessTestVariants 46=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.FunctionalTests\WindowsAuthTests.cs (2)
36public static TestMatrix TestVariants 37=> TestMatrix.ForServers(DeployerSelector.ServerType)
src\Servers\IIS\IIS\test\Common.LongTests\StartupTests.cs (2)
187public static TestMatrix TestVariants 188=> TestMatrix.ForServers(DeployerSelector.ServerType)
Microsoft.AspNetCore.Hosting.FunctionalTests (2)
WebHostBuilderTests.cs (2)
14public static TestMatrix TestVariants => TestMatrix.ForServers(ServerType.Kestrel)
Microsoft.AspNetCore.Server.IntegrationTesting (10)
TestMatrix.cs (10)
21public static TestMatrix ForServers(params ServerType[] types) 29public TestMatrix WithTfms(params string[] tfms) 35public TestMatrix WithApplicationTypes(params ApplicationType[] types) 41public TestMatrix WithAllApplicationTypes() 47public TestMatrix WithArchitectures(params RuntimeArchitecture[] archs) 57public TestMatrix WithAllArchitectures() 67public TestMatrix WithHostingModels(params HostingModel[] models) 73public TestMatrix WithAllHostingModels() 84public TestMatrix WithAncmV2InProcess() => WithHostingModels(HostingModel.InProcess); 86public TestMatrix Skip(string message, Func<TestVariant, bool> check)
ServerComparison.FunctionalTests (18)
HelloWorldTest.cs (4)
25public static TestMatrix TestVariants 26=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.Nginx, ServerType.HttpSys) 114public static TestMatrix SelfHostTestVariants 115=> TestMatrix.ForServers(ServerType.Kestrel, ServerType.HttpSys)
NtlmAuthenticationTest.cs (2)
23public static TestMatrix TestVariants 24=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.HttpSys, ServerType.Kestrel)
ResponseCompressionTests.cs (8)
35public static TestMatrix NoCompressionTestVariants 36=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.Nginx, ServerType.HttpSys) 47public static TestMatrix HostCompressionTestVariants 48=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Nginx) 59public static TestMatrix AppCompressionTestVariants 60=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.HttpSys) // No pass-through compression for nginx 71public static TestMatrix HostAndAppCompressionTestVariants 72=> TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, ServerType.Nginx, ServerType.HttpSys)
ResponseTests.cs (4)
27public static TestMatrix TestVariants 28=> TestMatrix.ForServers(/* ServerType.IISExpress, https://github.com/dotnet/aspnetcore/issues/6168, */ ServerType.Kestrel, ServerType.Nginx, ServerType.HttpSys) 53public static TestMatrix SelfhostTestVariants 54=> TestMatrix.ForServers(ServerType.Kestrel, ServerType.HttpSys)