| 213 | } |
| 214 | |
| 215 | void TestDocument::absoluteFilePath() |
| 216 | { |
| 217 | Tw::Document::TextDocument doc; |
| 218 | QFileInfo fi(QStringLiteral("base14-fonts.pdf")); |
| 219 | |
| 220 | QCOMPARE(doc.absoluteFilePath(), QString()); |
| 221 | doc.setFileInfo(fi); |
| 222 | QCOMPARE(doc.absoluteFilePath(), fi.absoluteFilePath()); |
| 223 | } |
| 224 | |
| 225 | void TestDocument::tags() |
| 226 | { |
no test coverage detected