forked from loafle/openapi-generator-original
* fixup! Simpler timeout with QTimer::singleShot (#4430) * cpp-qt5-client: remove host since it is not well handled * Move disconnect again * cpp-qt5-client: handle scheme/host/port properly * Fix port change try
22 lines
431 B
C++
22 lines
431 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();
|
|
};
|