2 instantiations of TestVariant
Microsoft.AspNetCore.Server.IntegrationTesting (2)
TestMatrix.cs (2)
236variants.Add(new TestVariant() 286variants.Add(new TestVariant()
15 references to TestVariant
Microsoft.AspNetCore.Server.IntegrationTesting (15)
Common\DeploymentParameters.cs (1)
25public DeploymentParameters(TestVariant variant)
TestMatrix.cs (14)
19private IList<Tuple<Func<TestVariant, bool>, string>> Skips { get; } = new List<Tuple<Func<TestVariant, bool>, string>>(); 86public TestMatrix Skip(string message, Func<TestVariant, bool> check) 88Skips.Add(new Tuple<Func<TestVariant, bool>, string>(check, message)); 92private IEnumerable<TestVariant> Build() 117var variants = new List<TestVariant>(); 133private void VaryByServer(List<TestVariant> variants) 166private void VaryByTfm(List<TestVariant> variants, ServerType server, string skip) 198private void VaryByApplicationType(List<TestVariant> variants, ServerType server, string tfm, string skip) 220private void VaryByArchitecture(List<TestVariant> variants, ServerType server, string tfm, string skip, ApplicationType type) 267private void VaryByAncmHostingModel(IList<TestVariant> variants, ServerType server, string tfm, ApplicationType type, RuntimeArchitecture arch, string skip) 298private void CheckForSkips(List<TestVariant> variants) 300foreach (var variant in variants) 321foreach (var v in Build())