withAddedComponents method

TestDocumentConfigurator 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 SuperReader.

Implementation

TestDocumentConfigurator withAddedComponents(List<ComponentBuilder> newComponents) {
  _addedComponents.addAll(newComponents);
  return this;
}