| 144 | } |
| 145 | |
| 146 | QUrl TestDocumentController::createFile(const QTemporaryDir& dir, const QString& filename) |
| 147 | { |
| 148 | QFile file(dir.path() + filename); |
| 149 | QVERIFY_RETURN(file.open(QIODevice::WriteOnly | QIODevice::Text), QUrl{}); |
| 150 | file.close(); |
| 151 | return QUrl::fromLocalFile(dir.path() + filename); |
| 152 | } |
| 153 | |
| 154 | void TestDocumentController::testEmptyUrl() |
| 155 | { |