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
|
#include <QString>
#include <QtQuickTest/quicktest.h>
#include "testrunner.h"
#include "quickfluxunittests.h"
#include "messagelogger.h"
namespace AutoTestRegister {
QUICK_TEST_MAIN(QuickTests)
}
int main(int argc, char *argv[])
{
qputenv("QML_DISABLE_DISK_CACHE", "true");
QGuiApplication app(argc,argv);
TestRunner runner;
runner.add<QuickFluxUnitTests>();
runner.add(QString(SRCDIR) + "/qmltests");
bool error = runner.exec(app.arguments());
if (!error) {
qWarning() << "All test cases passed!";
}
return error;
}
|