| 3313 | } |
| 3314 | |
| 3315 | void createBLFFile(const QString& filename, QVector<Vector::BLF::CanMessage2*> messages) { |
| 3316 | Vector::BLF::File blfFile; |
| 3317 | blfFile.open(filename.toStdString().c_str(), std::ios_base::out); |
| 3318 | QVERIFY(blfFile.is_open()); |
| 3319 | |
| 3320 | for (auto msg : messages) { |
| 3321 | blfFile.write(msg); |
| 3322 | } |
| 3323 | // Finish creating files |
| 3324 | blfFile.close(); |
| 3325 | } |
| 3326 | } |
| 3327 | |
| 3328 | void SpreadsheetTest::testLinkSpreadSheetImportBLF() { |
no test coverage detected