William Cheng eff3e6df53
[cpp-qt] Add option for download progress, add test (#19297)
* add option for download progress, add test

* add cmake file

* remove test

* update
2024-08-05 16:06:36 +08:00

18 lines
308 B
C++

#pragma once
#include "../client/PFXPetApi.h"
using namespace test_namespace;
class PetApiTests : public QObject {
Q_OBJECT
PFXPet createRandomPet();
private Q_SLOTS:
void findPetsByStatusTest();
void createAndGetPetTest();
void updatePetTest();
void updatePetWithFormTest();
};