{
final MasterReport masterReport = DebugReportRunner.parseGoldenSampleReport("Prd-3857-002.prpt");
masterReport.getReportConfiguration().setConfigProperty(ClassicEngineCoreModule.COMPLEX_TEXT_CONFIG_OVERRIDE_KEY, "true");
masterReport.getStyle().setStyleProperty(TextStyleKeys.WORDBREAK, true);
masterReport.setQueryLimit(1);
final CrosstabCellBody crosstabCellBody = masterReport.getCrosstabCellBody();
final CrosstabCell element = crosstabCellBody.findElement(null, null);
element.setName("Cell-Sample");
element.getStyle().setStyleProperty(TextStyleKeys.BOLD, true);
final LogicalPageBox logicalPageBox = DebugReportRunner.layoutPage(masterReport, 0);
final RenderNode[] elementsByName = MatchFactory.findElementsByName(logicalPageBox, "Cell-Sample");
assertTrue(elementsByName.length > 0);