1 instantiation of TestResult
RunTests (1)
ProcessTestExecutor.cs (1)
191
return new
TestResult
(
16 references to TestResult
RunTests (16)
ITestExecutor.cs (1)
34
/// The difference between <see cref="TestResultInfo"/> and <see cref="
TestResult
"/> is the former
ProcessTestExecutor.cs (1)
109
public async Task<
TestResult
> RunTestAsync(WorkItemInfo workItemInfo, Options options, CancellationToken cancellationToken)
Program.cs (2)
392
private static void DisplayResults(Display display, ImmutableArray<
TestResult
> testResults)
394
foreach (
var
cur in testResults)
TestRunner.cs (12)
24
internal ImmutableArray<
TestResult
> TestResults { get; }
27
internal RunAllResult(bool succeeded, ImmutableArray<
TestResult
> testResults, ImmutableArray<ProcessResult> processResults)
146
return new RunAllResult(result.ExitCode == 0, ImmutableArray<
TestResult
>.Empty, ImmutableArray.Create(result));
330
var running = new List<Task<
TestResult
>>();
331
var completed = new List<
TestResult
>();
346
var
testResult = await task.ConfigureAwait(false);
406
foreach (
var
c in completed)
414
private void Print(List<
TestResult
> testResults)
418
foreach (
var
testResult in testResults.Where(x => !x.Succeeded))
425
foreach (
var
testResult in testResults)
441
foreach (
var
testResult in testResults.Where(x => !string.IsNullOrEmpty(x.Diagnostics)))
447
private void PrintFailedTestResult(
TestResult
testResult)