| 519 | } |
| 520 | |
| 521 | void TestDocument::Synchronizer_syncTeXFilename() |
| 522 | { |
| 523 | TWSyncTeXSynchronizer valid(QStringLiteral("sync.pdf"), nullptr, nullptr); |
| 524 | TWSyncTeXSynchronizer invalid(QStringLiteral("does-not-exist"), nullptr, nullptr); |
| 525 | |
| 526 | QCOMPARE(valid.syncTeXFilename(), QStringLiteral("sync.synctex.gz")); |
| 527 | QCOMPARE(invalid.syncTeXFilename(), QString()); |
| 528 | } |
| 529 | |
| 530 | void TestDocument::Synchronizer_pdfFilename() |
| 531 | { |
nothing calls this directly
no test coverage detected