add test for anytype in cpp qt client

This commit is contained in:
William Cheng 2022-06-25 10:05:01 +08:00
parent c1b8780fff
commit 52452750c0
4 changed files with 15 additions and 0 deletions

View File

@ -743,3 +743,13 @@ components:
type: string
message:
type: string
TestAnyType:
title: test any type
description: test any type
type: object
properties:
code:
description: any type test
message:
type: string

View File

@ -28,6 +28,8 @@ client/PFXStoreApi.cpp
client/PFXStoreApi.h
client/PFXTag.cpp
client/PFXTag.h
client/PFXTestAnyType.cpp
client/PFXTestAnyType.h
client/PFXUser.cpp
client/PFXUser.h
client/PFXUserApi.cpp

View File

@ -21,6 +21,7 @@ add_library(${PROJECT_NAME}
PFXOrder.cpp
PFXPet.cpp
PFXTag.cpp
PFXTestAnyType.cpp
PFXUser.cpp
PFXPetApi.cpp
PFXPrimitivesApi.cpp

View File

@ -7,6 +7,7 @@ HEADERS += \
$${PWD}/PFXOrder.h \
$${PWD}/PFXPet.h \
$${PWD}/PFXTag.h \
$${PWD}/PFXTestAnyType.h \
$${PWD}/PFXUser.h \
# APIs
$${PWD}/PFXPetApi.h \
@ -30,6 +31,7 @@ SOURCES += \
$${PWD}/PFXOrder.cpp \
$${PWD}/PFXPet.cpp \
$${PWD}/PFXTag.cpp \
$${PWD}/PFXTestAnyType.cpp \
$${PWD}/PFXUser.cpp \
# APIs
$${PWD}/PFXPetApi.cpp \