3 instantiations of TestConfigDto
Aspire.Hosting.CodeGeneration.TypeScript.Tests (3)
TestTypes\TestTypes.cs (3)
34
public static readonly TestConfigDto Default =
new
()
43
public static TestConfigDto Secure { get; } =
new
()
56
public static readonly TestConfigDto Development =
new
()
8 references to TestConfigDto
Aspire.Hosting.CodeGeneration.TypeScript.Tests (8)
AtsTypeScriptCodeGeneratorTests.cs (2)
182
var testConfig = context.DtoTypes.First(dto => dto.Name == nameof(
TestConfigDto
));
184
Assert.Equal("The name of the test config.", testConfig.Properties.First(p => p.Name == nameof(
TestConfigDto
.Name)).Documentation?.Summary);
TestTypes\TestExtensions.cs (1)
463
TestConfigDto
config) where T : IResource
TestTypes\TestTypes.cs (5)
34
public static readonly
TestConfigDto
Default = new()
43
public static
TestConfigDto
Secure { get; } = new()
56
public static readonly
TestConfigDto
Development = new()
146
public
TestConfigDto
? Config { get; set; }
186
public Dictionary<string, List<
TestConfigDto
>> NestedData { get; set; } = [];