wrj97 cfe7dcc0cf
feat: using Qt with 3rd Party Signals and Slots (#17067)
Replace signals,slots and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT

Because these names will be used by a 3rd party library
2024-01-10 13:55:31 +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();
};