1 write to ServiceOverrideTypeName
Microsoft.AspNetCore.Components.Testing (1)
Infrastructure\ServerStartOptions.cs (1)
38
ServiceOverrideTypeName
= type.AssemblyQualifiedName;
8 references to ServiceOverrideTypeName
Microsoft.AspNetCore.Components.Testing (4)
Infrastructure\ServerInstance.cs (4)
106
if (options.
ServiceOverrideTypeName
is not null)
108
environment["E2E_TEST_SERVICES_TYPE"] = options.
ServiceOverrideTypeName
;
182
if (options.
ServiceOverrideTypeName
is not null)
184
sb.Append('|').Append(options.
ServiceOverrideTypeName
);
Microsoft.AspNetCore.Components.Testing.Tests (4)
ServerStartOptionsTests.cs (4)
30
Assert.Equal(typeof(ServerStartOptionsTests).AssemblyQualifiedName, options.
ServiceOverrideTypeName
);
45
Assert.Equal(type.AssemblyQualifiedName, options.
ServiceOverrideTypeName
);
60
Assert.Equal(typeof(int).AssemblyQualifiedName, options.
ServiceOverrideTypeName
);
97
Assert.Null(options.
ServiceOverrideTypeName
);