3 instantiations of TestProcessRun
Aspire.Hosting.TestUtilities (3)
Utils\TestProcessRunner.cs (3)
132return new TestProcessRun(exitCode, outputEvents, totalOutputLineCount, null, null); 136=> new(0, [], null, exception, null); 139=> new(0, [], null, null, pendingResult);
9 references to TestProcessRun
Aspire.Hosting.TestUtilities (9)
Utils\TestProcessRunner.cs (9)
11private readonly Queue<TestProcessRun> _runs = []; 48_runs.Enqueue(TestProcessRun.Result(exitCode, output, error, totalOutputLineCount, outputEvents)); 56_runs.Enqueue(TestProcessRun.Failed(exception)); 64_runs.Enqueue(TestProcessRun.Pending(processResult)); 70TestProcessRun run; 79run = _runs.Count > 0 ? _runs.Dequeue() : TestProcessRun.Result(); 119public static TestProcessRun Result( 135public static TestProcessRun Failed(Exception exception) 138public static TestProcessRun Pending(Task<ProcessResult> pendingResult)