wrj97 cfe7dcc0cf
feat: using Qt with 3rd Party Signals and Slots (#17067)
Replace signals,slots and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT

Because these names will be used by a 3rd party library
2024-01-10 13:55:31 +08:00

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();
};