forked from loafle/openapi-generator-original
* update ci to use petstore 1.0.4 * comment out test * comment out test * comment out update user test * comment out more tests * use latest petstore * comment out updatePetWithForm * comment out update pet test
20 lines
320 B
C++
20 lines
320 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();
|
|
*/
|
|
};
|