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
18 lines
306 B
C++
18 lines
306 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();
|
|
};
|