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