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