mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 05:57:29 +02:00
Added an implementation stub for JitterTests
(the current tests take port and ip address info via command line args, and would be non-trivial to reimplement using QtTest. The original tests can be run by #defining RUN_MANUALLY in the source file, and running jitter-JitterTests).
This commit is contained in:
parent
5a9d2a4d9c
commit
cbfd8485e4
1 changed files with 24 additions and 0 deletions
24
tests/jitter/src/JitterTests.h
Normal file
24
tests/jitter/src/JitterTests.h
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
//
|
||||||
|
// JitterTests.h
|
||||||
|
// hifi
|
||||||
|
//
|
||||||
|
// Created by Seiji Emery on 6/23/15.
|
||||||
|
//
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef hifi_JitterTests_h
|
||||||
|
#define hifi_JitterTests_h
|
||||||
|
|
||||||
|
#include <QtTest/QtTest>
|
||||||
|
|
||||||
|
class JitterTests : public QObject {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void qTestsNotYetImplemented () {
|
||||||
|
qDebug() << "TODO: Reimplement this using QtTest!\n"
|
||||||
|
"(JitterTests takes commandline arguments (port numbers), and can be run manually by #define-ing RUN_MANUALLY in JitterTests.cpp)";
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue