Package com.google.caliper.model

Examples of com.google.caliper.model.BenchmarkSpec


    Experiment experiment = new Experiment(
        allocationInstrument.createInstrumentation(method),
        ImmutableMap.<String, String>of(),
        new VirtualMachine("foo-jvm",
            new VmConfig(new File("foo"), Arrays.asList("--doTheHustle"), new File("java"))));
    BenchmarkSpec spec = new BenchmarkSpec.Builder()
        .className(TestBenchmark.class.getName())
        .methodName(method.getName())
        .build();
    ProcessBuilder builder = createProcess(experiment, spec);
    List<String> commandLine = builder.command();
View Full Code Here

TOP

Related Classes of com.google.caliper.model.BenchmarkSpec

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.