1 instantiation of TestResult
RunTests (1)
ProcessTestExecutor.cs (1)
191
return new
TestResult
(
15 references to TestResult
RunTests (15)
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)
389
private static void DisplayResults(Display display, ImmutableArray<
TestResult
> testResults)
391
foreach (
var
cur in testResults)
TestRunner.cs (11)
41
internal ImmutableArray<
TestResult
> TestResults { get; }
44
internal RunAllResult(bool succeeded, ImmutableArray<
TestResult
> testResults, ImmutableArray<ProcessResult> processResults)
84
var running = new List<Task<
TestResult
>>();
85
var completed = new List<
TestResult
>();
100
var
testResult = await task.ConfigureAwait(false);
160
foreach (
var
c in completed)
168
private void Print(List<
TestResult
> testResults)
172
foreach (
var
testResult in testResults.Where(x => !x.Succeeded))
179
foreach (
var
testResult in testResults)
195
foreach (
var
testResult in testResults.Where(x => !string.IsNullOrEmpty(x.Diagnostics)))
201
private void PrintFailedTestResult(
TestResult
testResult)