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
18 lines
305 B
C++
18 lines
305 B
C++
#pragma once
|
|
|
|
#include "../client/PFXPetApi.h"
|
|
|
|
using namespace test_namespace;
|
|
|
|
class PetApiTests: public QObject {
|
|
Q_OBJECT
|
|
|
|
PFXPet createRandomPet();
|
|
|
|
private slots:
|
|
void findPetsByStatusTest();
|
|
void createAndGetPetTest();
|
|
void updatePetTest();
|
|
void updatePetWithFormTest();
|
|
};
|