12 references to CreatedExecutions
Aspire.Cli.Tests (12)
Commands\StopCommandTests.cs (5)
969
Assert.Single(processFactory.
CreatedExecutions
);
1007
Assert.Empty(processFactory.
CreatedExecutions
);
1045
Assert.Empty(processFactory.
CreatedExecutions
);
1079
Assert.Empty(processFactory.
CreatedExecutions
);
1257
var execution = Assert.Single(processFactory.
CreatedExecutions
.OfType<TestProcessExecution>(), execution =>
ProfileCaptureServiceTests.cs (2)
82
var process = Assert.IsType<TestProcessExecution>(Assert.Single(processFactory.
CreatedExecutions
));
209
var process = Assert.IsType<TestProcessExecution>(Assert.Single(processFactory.
CreatedExecutions
));
TestServices\TestProcessExecutionFactory.cs (3)
92
CreatedExecutions
.Add(execution);
100
CreatedExecutions
.Add(execution);
111
CreatedExecutions
.Add(testExecution);
Utils\DevCertsCheckTests.cs (2)
644
var processExecution = Assert.IsType<TestProcessExecution>(Assert.Single(processExecutionFactory.
CreatedExecutions
));
703
var processExecution = Assert.IsType<TestProcessExecution>(Assert.Single(processExecutionFactory.
CreatedExecutions
));