Playing around with qtestlibs data driven testing (Added MediaTypeTest
[emufront] / testing / EmuFrontTesting / main.cpp
1 #include "platformtest.h"
2 #include "mediatypetest.h"
3
4 int main(int argc, char *argv[])
5 {
6     PlatformTest plfTest;
7     QTest::qExec(&plfTest, argc, argv);
8
9     MediaTypeTest mtTest;
10     QTest::qExec(&mtTest, argc, argv);
11
12     // More tests here...
13
14     return 0;
15 }