12 references to 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)