#pragma once #include 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(); }; } //