2013-07-02 12:45:04 +08:00
|
|
|
#include <QCoreApplication>
|
|
|
|
|
#include <QTest>
|
2013-07-02 02:25:12 +08:00
|
|
|
|
2013-07-02 12:45:04 +08:00
|
|
|
#include "testclient.h"
|
|
|
|
|
|
|
|
|
|
int main(int argc, char * argv[])
|
2013-07-02 02:25:12 +08:00
|
|
|
{
|
2013-07-02 12:45:04 +08:00
|
|
|
QCoreApplication app(argc, argv);
|
|
|
|
|
Q_UNUSED(app)
|
|
|
|
|
|
|
|
|
|
TestClient test;
|
|
|
|
|
return QTest::qExec(&test);
|
2013-07-02 02:25:12 +08:00
|
|
|
}
|