forked from loafle/openapi-generator-original
20 lines
393 B
C++
20 lines
393 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();
|
|
private:
|
|
const QString PetStoreHost = QStringLiteral("http://petstore.swagger.io");
|
|
};
|