public static String getSummary() throws Exception {
    String summaryHTMLContent = _readResource("META-INF/resources/html/summary.html");

    _summaryContentWrapperLoggerElement.addChildLoggerElement(_getSummaryContentLoggerElement());

    summaryHTMLContent =
        StringUtil.replace(
            summaryHTMLContent,
            "<div id=\"summaryContentContainer\" />",
            _summaryContentContainerLoggerElement.toString());

    LoggerElement summaryTestDescriptionLoggerElement = _getSummaryTestDescriptionLoggerElement();

    summaryHTMLContent =
        StringUtil.replace(
            summaryHTMLContent,
            "<p id=\"summaryTestDescription\" />",
            summaryTestDescriptionLoggerElement.toString());

    LoggerElement summaryTestNameLoggerElement = _getSummaryTestNameLoggerElement();

    summaryHTMLContent =
        StringUtil.replace(
            summaryHTMLContent,
            "<h3 id=\"summaryTestName\" />",
            summaryTestNameLoggerElement.toString());

    summaryHTMLContent =
        StringUtil.replace(
            summaryHTMLContent,
            "<ul id=\"summaryTitleContainer\" />",
            _summaryTitleContainerLoggerElement.toString());

    return summaryHTMLContent;
  }