From cbfd8485e4765dda8fbf5872df5fc1f5757ccb2b Mon Sep 17 00:00:00 2001 From: Seiji Emery Date: Tue, 23 Jun 2015 11:50:31 -0700 Subject: [PATCH] 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). --- tests/jitter/src/JitterTests.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/jitter/src/JitterTests.h diff --git a/tests/jitter/src/JitterTests.h b/tests/jitter/src/JitterTests.h new file mode 100644 index 0000000000..b6ab4562e9 --- /dev/null +++ b/tests/jitter/src/JitterTests.h @@ -0,0 +1,24 @@ +// +// JitterTests.h +// hifi +// +// Created by Seiji Emery on 6/23/15. +// +// + +#ifndef hifi_JitterTests_h +#define hifi_JitterTests_h + +#include + +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