mirror of
https://gitlab.com/spaceti-app/integrations/common/server-sdk.git
synced 2026-07-12 16:30:44 +02:00
22 lines
405 B
C++
22 lines
405 B
C++
|
|
#pragma once
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
namespace serversdk {
|
|
|
|
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 basicAuthorization_test();
|
|
};
|
|
|
|
} //
|