Package com.google.sitebricks.stat.StatsPublishers

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


        .toString();
    assertPublishing(publisher, expectedOutput);
  }

  @Test public void testTextPublisher() {
    TextStatsPublisher publisher = new TextStatsPublisher();
    String expectedOutput = new StringBuilder()
        .append("int-stat 3").append(NL)
        .append("float-stat 4.3").append(NL)
        .append("list-stat [a, b, c]").append(NL)
        .toString();
View Full Code Here

TOP

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

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.