|
13 | 13 | import TestsUtils
|
14 | 14 |
|
15 | 15 | public let IntegerParsing = [
|
16 |
| - BenchmarkInfo(name: "ParseIntFromDecimal", |
| 16 | + BenchmarkInfo(name: "ParseInt.Decimal", |
17 | 17 | runFunction: run_ParseIntFromDecimal,
|
18 | 18 | tags: [.validation, .api],
|
19 | 19 | setUpFunction: { blackHole(decimalStrings) }),
|
20 |
| - BenchmarkInfo(name: "ParseIntFromBinary", |
| 20 | + BenchmarkInfo(name: "ParseInt.Binary", |
21 | 21 | runFunction: run_ParseIntFromBinary,
|
22 | 22 | tags: [.validation, .api],
|
23 | 23 | setUpFunction: { blackHole(binaryStrings) }),
|
24 |
| - BenchmarkInfo(name: "ParseIntFromHex", |
| 24 | + BenchmarkInfo(name: "ParseInt.Hex", |
25 | 25 | runFunction: run_ParseIntFromHex,
|
26 | 26 | tags: [.validation, .api],
|
27 | 27 | setUpFunction: { blackHole(hexStrings) }),
|
28 |
| - BenchmarkInfo(name: "ParseIntFromUncommonRadix", |
| 28 | + BenchmarkInfo(name: "ParseInt.UncommonRadix", |
29 | 29 | runFunction: run_ParseIntFromUncommonRadix,
|
30 | 30 | tags: [.validation, .api],
|
31 | 31 | setUpFunction: { blackHole(uncommonRadixStrings) }),
|
|
0 commit comments