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