10 references to TestRuntime
RunTests (10)
Options.cs (5)
54
public
TestRuntime
TestRuntime { get; set; } =
TestRuntime
.Both;
146
var
testRuntime =
TestRuntime
.Both;
171
{ "runtime=", "The runtime to test: both, core or framework", (
TestRuntime
t) => testRuntime = t},
Program.cs (5)
382
static bool IsMatch(
TestRuntime
testRuntime, string dirName) =>
385
TestRuntime
.Both => true,
386
TestRuntime
.Core => Regex.IsMatch(dirName, @"^net\d+\."),
387
TestRuntime
.Framework => dirName is "net472",
388
_ => throw new InvalidOperationException($"Unexpected {nameof(
TestRuntime
)} value: {testRuntime}"),