[C++] Rename Qt5 to Qt (#9490)

* rename qt5 to qt

* rename, update

* rename qt5 to qt in the templates

* update doc
This commit is contained in:
William Cheng
2021-05-18 23:09:59 +08:00
committed by GitHub
parent 55b95bc9c5
commit 9e4afb0fc3
139 changed files with 67 additions and 67 deletions

View File

@@ -0,0 +1,17 @@
#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();
};