| 35 | } |
| 36 | |
| 37 | void BenchIndexedString::bench_index() |
| 38 | { |
| 39 | const QVector<QString> data = generateData(); |
| 40 | QBENCHMARK { |
| 41 | for (const QString& item : data) { |
| 42 | IndexedString idx(item); |
| 43 | Q_UNUSED(idx); |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | static QVector<uint> setupTest() |
| 49 | { |
nothing calls this directly
no test coverage detected