ssu
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1
7
8#include <QtCore/QCoreApplication>
9#include <QtTest/QtTest>
10
11#include "featuremodeltest.h"
12
13int main(int argc, char **argv)
14{
15 QCoreApplication app(argc, argv);
16
17 FeatureModelTest featureModelTest;
18
19 if (QTest::qExec(&featureModelTest, argc, argv))
20 return 1;
21
22 return 0;
23}