withAddedComponents method

TestSuperEditorConfigurator withAddedComponents(
  1. List<ComponentBuilder> newComponents
)

Adds the given component builders to the list of component builders that are used to render the document layout in the pumped SuperEditor.

Implementation

TestSuperEditorConfigurator withAddedComponents(List<ComponentBuilder> newComponents) {
  _config.addedComponents.addAll(newComponents);
  return this;
}