Package org.radargun.reporting.html

Examples of org.radargun.reporting.html.TimelineDocument


      t1.addValue("Category C", new Timeline.Value(now + 2100, 912));
      t1.addValue("Category C", new Timeline.Value(now + 3800, 485));

      Cluster cluster = new Cluster();
      cluster.addGroup("default", 2);
      TimelineDocument doc = new TimelineDocument(new TimelineDocument.Configuration(), "test", "testconfig", "Test Config", Arrays.asList(t0, t1), cluster);
      try {
         doc.open();
         doc.writeTimelines();
         doc.close();
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
View Full Code Here

TOP

Related Classes of org.radargun.reporting.html.TimelineDocument

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.