| 99 | } |
| 100 | |
| 101 | void span_fileProvider() { |
| 102 | BufferProvider p(QByteArray(4, '\0'), "dump.bin"); |
| 103 | QString row = buildCommandRow(p, 0x140000000ULL); |
| 104 | auto span = commandRowSrcSpan(row); |
| 105 | QVERIFY(span.valid); |
| 106 | QString extracted = row.mid(span.start, span.end - span.start); |
| 107 | QCOMPARE(extracted, QStringLiteral("'dump.bin'")); |
| 108 | } |
| 109 | |
| 110 | void span_processProvider_simulated() { |
| 111 | // Simulate a process provider without needing Windows APIs |
nothing calls this directly
no test coverage detected