com.google.caliper.runner.CaliperMain Java Examples

The following examples show how to use com.google.caliper.runner.CaliperMain. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: XmlParsingBenchmark.java    From tikxml with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) {
    CaliperMain.main(XmlBenchmark.class, args);
}
 
Example #2
Source File: GetPutBenchmark.java    From concurrentlinkedhashmap with Apache License 2.0 4 votes vote down vote up
@Test(groups = "caliper")
public static void benchmark() {
  CaliperMain.main(GetPutBenchmark.class, new String[] {});
}
 
Example #3
Source File: CollectionBenchmark.java    From multiway-pool with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  CaliperMain.main(CollectionBenchmark.class, args);
}
 
Example #4
Source File: StartIndexBenchmark.java    From multiway-pool with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  CaliperMain.main(StartIndexBenchmark.class, args);
}
 
Example #5
Source File: SingleThreadedBenchmark.java    From multiway-pool with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  CaliperMain.main(SingleThreadedBenchmark.class, args);
}
 
Example #6
Source File: Benchmarks.java    From tree-regex with Apache License 2.0 4 votes vote down vote up
public static void main(String[] args) throws Exception {
  CaliperMain.main(ClassNameBenchmark.class, args);
}