12 instantiations of TestProcessExecution
Aspire.Cli.Tests (12)
Commands\DashboardRunCommandTests.cs (2)
362new TestProcessExecution( 406new TestProcessExecution("fake", [], null, options, (_, _, _) => Task.FromResult((0, (string?)null)), () => 0)
Commands\StopCommandTests.cs (1)
940new TestProcessExecution(
ProfileCaptureServiceTests.cs (4)
165process = new TestProcessExecution(fileName, args, env, options, (_, _, _) => Task.FromResult((0, (string?)null)), () => 1) 281var process = new TestProcessExecution( 550var process = new TestProcessExecution( 571return new TestProcessExecution(
TestServices\TestProcessExecutionFactory.cs (1)
110var testExecution = new TestProcessExecution(fileName, args, env, options, callback, () => _attemptCount);
Utils\DcpConnectionHealthCheckTests.cs (1)
69var testExecution = new TestProcessExecution(
Utils\DevCertsCheckTests.cs (3)
525new TestProcessExecution(fileName, args, env, options, (_, _, _) => Task.FromResult((0, (string?)"12345678")), () => 1) 630new TestProcessExecution(fileName, args, env, options, async (_, _, cancellationToken) => 689new TestProcessExecution(fileName, args, env, options, (_, _, _) => throw new IOException("openssl pipe failed"), () => 1)
20 references to TestProcessExecution
Aspire.Cli.Tests (20)
Commands\StopCommandTests.cs (2)
1257var execution = Assert.Single(processFactory.CreatedExecutions.OfType<TestProcessExecution>(), execution =>
ProfileCaptureServiceTests.cs (11)
82var process = Assert.IsType<TestProcessExecution>(Assert.Single(processFactory.CreatedExecutions)); 160TestProcessExecution? process = null; 209var process = Assert.IsType<TestProcessExecution>(Assert.Single(processFactory.CreatedExecutions)); 242var process = CreateStartedProcess((_, _) => Task.FromResult(42)); 281var process = new TestProcessExecution( 523TestProcessExecution? process = null, 548private static TestProcessExecution CreateStartedProcess(Func<ProcessInvocationOptions, CancellationToken, Task<int>> waitForExitAsync) 550var process = new TestProcessExecution( 564private static TestProcessExecution CreateRunningProcess(
TestServices\TestProcessExecutionFactory.cs (1)
110var testExecution = new TestProcessExecution(fileName, args, env, options, callback, () => _attemptCount);
Utils\DcpConnectionHealthCheckTests.cs (2)
64TestProcessExecution? execution = null; 69var testExecution = new TestProcessExecution(
Utils\DevCertsCheckTests.cs (4)
644var processExecution = Assert.IsType<TestProcessExecution>(Assert.Single(processExecutionFactory.CreatedExecutions)); 703var processExecution = Assert.IsType<TestProcessExecution>(Assert.Single(processExecutionFactory.CreatedExecutions));