| 71 | } |
| 72 | |
| 73 | void verifiedWrite(QUrl const & url, QString const & contents) |
| 74 | { |
| 75 | QFile f(url.path()); |
| 76 | QVERIFY(f.open(QIODevice::WriteOnly)); |
| 77 | QTextStream filecontents(&f); |
| 78 | filecontents << contents; |
| 79 | filecontents.flush(); |
| 80 | f.flush(); |
| 81 | } |
| 82 | |
| 83 | |
| 84 | void fillWorkingDirectory(QString const & dirname) |
no test coverage detected