forked from loafle/openapi-generator-original
Replace signals,slots and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT Because these names will be used by a 3rd party library
22 lines
434 B
C++
22 lines
434 B
C++
#pragma once
|
|
|
|
#include "../client/PFXUserApi.h"
|
|
|
|
using namespace test_namespace;
|
|
|
|
class UserApiTests : public QObject {
|
|
Q_OBJECT
|
|
|
|
PFXUser createRandomUser();
|
|
|
|
private Q_SLOTS:
|
|
void createUserTest();
|
|
void createUsersWithArrayInputTest();
|
|
void createUsersWithListInputTest();
|
|
void deleteUserTest();
|
|
void getUserByNameTest();
|
|
void loginUserTest();
|
|
void logoutUserTest();
|
|
void updateUserTest();
|
|
};
|