11 instantiations of TestGoLaunchConfiguration
Aspire.Hosting.Tests (11)
DebugSupportExtensionsTests.cs (11)
84return Task.FromResult(new TestGoLaunchConfiguration { Mode = context.Mode }); 164.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode, Package = "./cmd/api" }, "go"); 183return new TestGoLaunchConfiguration { Mode = mode, Package = "./cmd/api" }; 203return Task.FromResult(new TestGoLaunchConfiguration { Mode = mode }); 222return Task.FromResult(new TestGoLaunchConfiguration 246.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 263return Task.FromResult(new TestGoLaunchConfiguration 341.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 365.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 379.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 428.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go");
11 references to TestGoLaunchConfiguration
Aspire.Hosting.Tests (11)
DebugSupportExtensionsTests.cs (11)
87var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>( 166var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>(await CreateLaunchConfigurationForTestAsync(executable.Resource, ExecutableLaunchMode.NoDebug)); 186var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>(await CreateLaunchConfigurationForTestAsync(executable.Resource, ExecutableLaunchMode.Debug)); 229var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>( 275var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>( 317.WithDebugSupport(_ => (TestGoLaunchConfiguration)null!, "go");