summaryrefslogtreecommitdiffstats
path: root/tests/auto/selftests/random/tst_random.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/selftests/random/tst_random.cpp')
-rw-r--r--tests/auto/selftests/random/tst_random.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/auto/selftests/random/tst_random.cpp b/tests/auto/selftests/random/tst_random.cpp
new file mode 100644
index 0000000..1ee922e
--- /dev/null
+++ b/tests/auto/selftests/random/tst_random.cpp
@@ -0,0 +1,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"
+