eaff3020e46336f7f6f8d377cb7fb8958c7000f9
[emufront] / testing / EmuFrontTesting / main.cpp
1 #include "emufrontobjecttest.h"
2 #include "platformtest.h"
3 #include "mediatypetest.h"
4 //#include "platformnamedialogtest.h"
5
6 int main(int argc, char *argv[])
7 {
8     // Needed QApplication for widget tests
9     //QApplication app(argc, argv);
10
11     EmuFrontObjectTest efoTst;
12     QTest::qExec(&efoTst, argc, argv);
13
14     PlatformTest plfTest;
15     QTest::qExec(&plfTest, argc, argv);
16
17     MediaTypeTest mtTest;
18     QTest::qExec(&mtTest, argc, argv);
19
20     //PlatformNameDialogTest plfDlgTest;
21     //QTest::qExec(&plfDlgTest, argc, argv);
22
23     // More tests here...
24
25     //return app.exec();
26 }