blob: 86b96e7bbe31aad809704dae3d6297132ace1ddc [file] [log] [blame]
Paul Duffine2363012015-11-30 16:20:41 +00001/*
2 * Copyright (C) 2011 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5 * in compliance with the License. You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software distributed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11 * or implied. See the License for the specific language governing permissions and limitations under
12 * the License.
13 */
14
15package com.google.caliper.options;
16
17import com.google.caliper.util.ShortDuration;
18import com.google.common.collect.ImmutableMap;
19import com.google.common.collect.ImmutableSet;
20import com.google.common.collect.ImmutableSetMultimap;
21
22import java.io.File;
23
24public interface CaliperOptions {
25 String benchmarkClassName();
26 ImmutableSet<String> benchmarkMethodNames();
27 ImmutableSet<String> vmNames();
28 ImmutableSetMultimap<String, String> userParameters();
29 ImmutableSetMultimap<String, String> vmArguments();
30 ImmutableMap<String, String> configProperties();
31 ImmutableSet<String> instrumentNames();
32 int trialsPerScenario();
33 ShortDuration timeLimit();
34 String runName();
35 boolean printConfiguration();
36 boolean dryRun();
37 File caliperDirectory();
38 File caliperConfigFile();
39}