remove no longer needed auto test

This commit is contained in:
Matt Broadstone 2014-06-03 16:46:51 -04:00
parent 983eb60f76
commit e9dcb18c44
4 changed files with 0 additions and 45 deletions

View File

@ -1,7 +1,6 @@
TEMPLATE = subdirs
SUBDIRS = \
qamqpclient \
qamqpconnection \
qamqpexchange \
queues \
channels

View File

@ -1,6 +0,0 @@
DEPTH = ../../..
include($${DEPTH}/qamqp.pri)
include($${DEPTH}/tests/tests.pri)
TARGET = tst_qamqpconnection
SOURCES = tst_qamqpconnection.cpp

View File

@ -1,6 +0,0 @@
DEPTH = ../../..
include($${DEPTH}/qamqp.pri)
include($${DEPTH}/tests/tests.pri)
TARGET = tst_qamqpexchange
SOURCES = tst_qamqpexchange.cpp

View File

@ -1,32 +0,0 @@
#include <QtTest/QtTest>
#include "signalspy.h"
class tst_QAMQPConnection : public QObject
{
Q_OBJECT
private Q_SLOTS:
void dummy();
private:
bool waitForSignal(QObject *obj, const char *signal, int delay = 1);
};
bool tst_QAMQPConnection::waitForSignal(QObject *obj, const char *signal, int delay)
{
QObject::connect(obj, signal, &QTestEventLoop::instance(), SLOT(exitLoop()));
QPointer<QObject> safe = obj;
QTestEventLoop::instance().enterLoop(delay);
if (!safe.isNull())
QObject::disconnect(safe, signal, &QTestEventLoop::instance(), SLOT(exitLoop()));
return !QTestEventLoop::instance().timeout();
}
void tst_QAMQPConnection::dummy()
{
QVERIFY(true);
}
QTEST_MAIN(tst_QAMQPConnection)
#include "tst_qamqpconnection.moc"