1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
// Copyright (C) 2020 Ford Motor Company
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
//#include "rep_pods_replica.h"
#include <QTest>
#include <QByteArray>
class tst_rep_from_header : public QObject {
Q_OBJECT
private Q_SLOTS:
void testRep_data();
void testRep();
};
void tst_rep_from_header::testRep_data()
{
QTest::addColumn<QString>("actualFile");
QTest::addColumn<QByteArrayList>("expectedLines");
QTest::newRow("pods") << QStringLiteral("pods.rep")
<< QByteArrayList{"POD PodI(int i)",
"POD PodF(float f)",
"POD PodS(QString s)",
"POD PodIFS(int i, float f, QString s)",
""};
}
void tst_rep_from_header::testRep()
{
QFETCH(QString, actualFile);
QFETCH(QByteArrayList, expectedLines);
const auto readFile = [&](const QString &fileName) {
QFile f(fileName);
f.open(QIODevice::ReadOnly);
QByteArrayList lines;
while (!f.atEnd())
lines.append(f.readLine().trimmed());
return lines;
};
QVERIFY2(QFile::exists(actualFile), qPrintable(actualFile));
QByteArrayList actualLines = readFile(actualFile);
QVERIFY(actualLines == expectedLines);
}
QTEST_APPLESS_MAIN(tst_rep_from_header)
#include "tst_rep_from_header.moc"
|