11 instantiations of TestGoLaunchConfiguration
Aspire.Hosting.Tests (11)
DebugSupportExtensionsTests.cs (11)
84return Task.FromResult(new TestGoLaunchConfiguration { Mode = context.Mode }); 168.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode, Package = "./cmd/api" }, "go"); 187return new TestGoLaunchConfiguration { Mode = mode, Package = "./cmd/api" }; 207return Task.FromResult(new TestGoLaunchConfiguration { Mode = mode }); 226return Task.FromResult(new TestGoLaunchConfiguration 250.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 267return Task.FromResult(new TestGoLaunchConfiguration 345.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 369.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 383.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go"); 432.WithDebugSupport(mode => new TestGoLaunchConfiguration { Mode = mode }, "go");
11 references to TestGoLaunchConfiguration
Aspire.Hosting.Tests (11)
DebugSupportExtensionsTests.cs (11)
87var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>( 170var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>(await CreateLaunchConfigurationForTestAsync(executable.Resource, ExecutableLaunchMode.NoDebug)); 190var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>(await CreateLaunchConfigurationForTestAsync(executable.Resource, ExecutableLaunchMode.Debug)); 233var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>( 279var launchConfiguration = Assert.IsType<TestGoLaunchConfiguration>( 321.WithDebugSupport(_ => (TestGoLaunchConfiguration)null!, "go");