13 references to TestRuntimes
Microsoft.DotNet.XUnitExtensions (13)
Attributes\ActiveIssueAttribute.cs (3)
21public ActiveIssueAttribute(string issue, TestRuntimes runtimes) { } 22public ActiveIssueAttribute(string issue, TestPlatforms platforms = TestPlatforms.Any, TargetFrameworkMonikers framework = TargetFrameworkMonikers.Any, TestRuntimes runtimes = TestRuntimes.Any) { }
Attributes\OuterLoopAttribute.cs (3)
23public OuterLoopAttribute(string reason, TestRuntimes runtimes) { } 24public OuterLoopAttribute(string reason, TestPlatforms platforms = TestPlatforms.Any, TargetFrameworkMonikers framework = TargetFrameworkMonikers.Any, TestRuntimes runtimes = TestRuntimes.Any) { }
DiscovererHelpers.cs (7)
38public static bool TestRuntimeApplies(TestRuntimes runtimes) => 39(runtimes.HasFlag(TestRuntimes.Mono) && IsMonoRuntime) || 40(runtimes.HasFlag(TestRuntimes.CoreCLR) && !IsMonoRuntime); // assume CoreCLR if it's not Mono 71TestRuntimes runtimes = TestRuntimes.Any; 85else if (arg is TestRuntimes) 87runtimes = (TestRuntimes)arg;