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)
37internal ImmutableArray<TestResult> TestResults { get; } 40internal RunAllResult(bool succeeded, ImmutableArray<TestResult> testResults, ImmutableArray<ProcessResult> processResults) 80var running = new List<Task<TestResult>>(); 81var completed = new List<TestResult>(); 96var testResult = await task.ConfigureAwait(false); 156foreach (var c in completed) 164private void Print(List<TestResult> testResults) 168foreach (var testResult in testResults.Where(x => !x.Succeeded)) 175foreach (var testResult in testResults) 191foreach (var testResult in testResults.Where(x => !string.IsNullOrEmpty(x.Diagnostics))) 197private void PrintFailedTestResult(TestResult testResult)