forked from ondra/server-sdk
22 lines
386 B
C++
22 lines
386 B
C++
|
|
#pragma once
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
namespace core {
|
|
|
|
class RequestTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
// Default testcases ( not needed to declare it )
|
|
// Q_SLOT void initTestCase();
|
|
// Q_SLOT void cleanupTestCase();
|
|
// void wont_run(); // no Q_SLOT ( only slots will be runned within tests )
|
|
|
|
|
|
Q_SLOT void auth_test();
|
|
};
|
|
|
|
} //
|