2 instantiations of TestRenderMode
Microsoft.AspNetCore.Components.Tests (2)
ComponentFactoryTest.cs (2)
192var callSiteRenderMode = new TestRenderMode(); 405public override IComponentRenderMode Mode => new TestRenderMode();
3 references to TestRenderMode
Microsoft.AspNetCore.Components.Tests (3)
ComponentFactoryTest.cs (3)
157Assert.IsType<TestRenderMode>(renderer.SuppliedRenderMode); 192var callSiteRenderMode = new TestRenderMode(); 228Assert.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);