2 instantiations of TestVariant
Microsoft.AspNetCore.Server.IntegrationTesting (2)
83 references to TestVariant
IIS.FunctionalTests (21)
IIS.LongTests (2)
IIS.NewHandler.FunctionalTests (2)
IIS.NewShim.FunctionalTests (2)
IIS.ShadowCopy.Tests (1)
IISExpress.FunctionalTests (23)
Microsoft.AspNetCore.Hosting.FunctionalTests (1)
Microsoft.AspNetCore.Server.IntegrationTesting (15)
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())
Microsoft.AspNetCore.Server.IntegrationTesting.IIS (1)
ServerComparison.FunctionalTests (15)