blob: 1ee922ececcaa634c392f511102ed7f720757b81 (
plain)
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 <QtCore>
#include <QtTest/QtTest>
class tst_Random: public QObject
{
Q_OBJECT
private slots:
void testOne() const {}
void testTwo() const {}
void testThree() const {}
};
/*
int main(int argc, char * argv[])
{
int failures = 0;
tst_Random tst;
for (int i = 0; i != 10; i++) {
failures += QTest::qExec(&tst, argc, argv);
}
return failures;
}
*/
QTEST_MAIN(tst_Random)
#include "tst_random.moc"
|