| 75 | // --------------------------------------------------------------- |
| 76 | |
| 77 | void row_nullProvider() { |
| 78 | NullProvider p; |
| 79 | QString row = buildCommandRow(p, 0); |
| 80 | QCOMPARE(row, QStringLiteral(" source\u25BE \u00B7 0x0")); |
| 81 | } |
| 82 | |
| 83 | void row_fileProvider() { |
| 84 | BufferProvider p(QByteArray(4, '\0'), "test.bin"); |
nothing calls this directly
no test coverage detected