1 write to ServiceOverrideMethodName
Microsoft.AspNetCore.Components.Testing (1)
Infrastructure\ServerStartOptions.cs (1)
39ServiceOverrideMethodName = methodName;
6 references to ServiceOverrideMethodName
Microsoft.AspNetCore.Components.Testing (2)
Infrastructure\ServerInstance.cs (2)
109environment["E2E_TEST_SERVICES_METHOD"] = options.ServiceOverrideMethodName!; 185sb.Append(':').Append(options.ServiceOverrideMethodName);
Microsoft.AspNetCore.Components.Testing.Tests (4)
ServerStartOptionsTests.cs (4)
31Assert.Equal("MyMethod", options.ServiceOverrideMethodName); 46Assert.Equal("Configure", options.ServiceOverrideMethodName); 61Assert.Equal("Second", options.ServiceOverrideMethodName); 98Assert.Null(options.ServiceOverrideMethodName);