1/*
2 * Copyright (C) 2011 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package benchmarks.regression;
18
19import com.google.caliper.Param;
20
21public class StringToRealBenchmark {
22
23    @Param({
24        "NaN",
25        "-1",
26        "0",
27        "1",
28        "1.2",
29        "-123.45",
30        "-123.45e8",
31        "-123.45e36"
32    }) String string;
33
34    public void timeFloat_parseFloat(int reps) {
35        for (int rep = 0; rep < reps; ++rep) {
36            Float.parseFloat(string);
37        }
38    }
39
40    public void timeDouble_parseDouble(int reps) {
41        for (int rep = 0; rep < reps; ++rep) {
42            Double.parseDouble(string);
43        }
44    }
45}
46