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