| 25 | using namespace GammaRay; |
| 26 | |
| 27 | void BenchSuite::iconForObject() |
| 28 | { |
| 29 | QWidget widget; |
| 30 | QLabel label; |
| 31 | QTreeView treeView; |
| 32 | QBENCHMARK |
| 33 | { |
| 34 | Util::iconIdForObject(this); |
| 35 | Util::iconIdForObject(&widget); |
| 36 | Util::iconIdForObject(&label); |
| 37 | Util::iconIdForObject(&treeView); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | void BenchSuite::probe_objectAdded() |
nothing calls this directly
no test coverage detected