| 43 | } |
| 44 | |
| 45 | void TestEFIBootData::showProgress(size_t step, size_t total, const QString &details) const |
| 46 | { |
| 47 | if(step >= total) |
| 48 | total = step + 1; |
| 49 | |
| 50 | qDebug() << QString("[%0%] (%1/%2) %3").arg(100 * step / total).arg(step).arg(total).arg(details); |
| 51 | } |
| 52 | |
| 53 | void TestEFIBootData::testReload() const |
| 54 | { |
nothing calls this directly
no outgoing calls
no test coverage detected