2 instantiations of TestRenderMode
Microsoft.AspNetCore.Components.Tests (2)
ComponentFactoryTest.cs (2)
192
var callSiteRenderMode = new
TestRenderMode
();
405
public override IComponentRenderMode Mode => new
TestRenderMode
();
3 references to TestRenderMode
Microsoft.AspNetCore.Components.Tests (3)
ComponentFactoryTest.cs (3)
157
Assert.IsType<
TestRenderMode
>(renderer.SuppliedRenderMode);
192
var
callSiteRenderMode = new TestRenderMode();
228
Assert.Equal($"The component type '{componentType}' has a fixed rendermode of '{typeof(
TestRenderMode
)}', so it is not valid to specify any rendermode when using this component.", ex.Message);