SmtpClient-for-Qt/test/main.cpp
2013-02-10 15:40:10 +02:00

26 lines
435 B
C++

#include <QCoreApplication>
#include <QtTest/QTest>
#include <QDebug>
#include "connectiontest.h"
bool success = true;
void runTest(QObject *test) {
int retVal = QTest::qExec(test);
success &= retVal == 0;
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
runTest(new ConnectionTest());
if (success)
qDebug() << "SUCCESS";
else
qDebug() << "FAIL";
return success;
}