Package com.google.sitebricks.stat.StatsPublishers

Examples of com.google.sitebricks.stat.StatsPublishers.HtmlStatsPublisher


    printWriter = new PrintWriter(stringWriter);
  }

  @Test
  public void testHtmlPublisher() {
    HtmlStatsPublisher publisher = new HtmlStatsPublisher();
    String expectedOutput = new StringBuilder()
        .append("<html><head><style>").append(NL)
        .append("body { font-family: monospace; }").append(NL)
        .append("</style></head><body>").append(NL)
        .append("<b>int-stat:</b> 3<br/>").append(NL)
View Full Code Here

TOP

Related Classes of com.google.sitebricks.stat.StatsPublishers.HtmlStatsPublisher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.