How to use QtTest with qbs

302 Views Asked by At

I can't find clear example of building tests with qbs. I tried like this

import qbs

CppApplication {
  consoleApplication: true

  files: [ "TestTask.h", "TestTask.cpp" ]
  Depends { name: "Qt"; submodules: [ "core", "testlib" ] }
}

TestTask is a QObject subclass. But compiler says that I missed main() function.

1

There are 1 best solutions below

0
On

For compile test your need main.cpp. For example:

#include <QCoreApplication>
#include <QTest>
#include "TestTask.h"

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    QTest::qExec(new TestTask, argc, argv);
    return 0;
}

Your must also add main.cpp in files (qbs file).