bunit.core by Egil Hansen

<PackageReference Include="bunit.core" Version="1.2.49" />

 RenderedComponentRenderExtensions

public static class RenderedComponentRenderExtensions
Re-render extension methods, optionally with new parameters, for IRenderedComponentBase<T>.
public static void Render<TComponent>(this IRenderedComponentBase<TComponent> renderedComponent) where TComponent : IComponent

Render the component under test again.

public static void SetParametersAndRender<TComponent>(this IRenderedComponentBase<TComponent> renderedComponent, ParameterView parameters) where TComponent : IComponent

Render the component under test again with the provided parameters.

public static void SetParametersAndRender<TComponent>(this IRenderedComponentBase<TComponent> renderedComponent, ComponentParameter[] parameters) where TComponent : IComponent

Render the component under test again with the provided parameters.

public static void SetParametersAndRender<TComponent>(this IRenderedComponentBase<TComponent> renderedComponent, Action<ComponentParameterCollectionBuilder<TComponent>> parameterBuilder) where TComponent : IComponent

Render the component under test again with the provided parameters from the parameterBuilder.