| 24 | |
| 25 | namespace { |
| 26 | QUrl makeUrl(const QString& fileName) |
| 27 | { |
| 28 | constexpr auto nonexistentDirPath = |
| 29 | #ifdef Q_OS_WIN |
| 30 | "C:" |
| 31 | #endif |
| 32 | "/non/existent/path/to/a-dir/"; |
| 33 | |
| 34 | return QUrl::fromLocalFile(nonexistentDirPath + fileName); |
| 35 | } |
| 36 | |
| 37 | void testUrlDocument(const UrlDocument& doc, const QUrl& url) |
| 38 | { |