forked from loafle/openapi-generator-original
* HttpFileElement * HttpRequest * Add .clang-format * cpp-qt5-client: fix warning reordering member initialization * api * enum * licenseInfo * model * object * helper * test * QString::arg start from %1 (not from %0) * fixup! model
22 lines
432 B
C++
22 lines
432 B
C++
#pragma once
|
|
|
|
#include "../client/PFXUserApi.h"
|
|
|
|
using namespace test_namespace;
|
|
|
|
class UserApiTests : public QObject {
|
|
Q_OBJECT
|
|
|
|
PFXUser createRandomUser();
|
|
|
|
private slots:
|
|
void createUserTest();
|
|
void createUsersWithArrayInputTest();
|
|
void createUsersWithListInputTest();
|
|
void deleteUserTest();
|
|
void getUserByNameTest();
|
|
void loginUserTest();
|
|
void logoutUserTest();
|
|
void updateUserTest();
|
|
};
|