[cpp-qt5] client response headers and validation of properties for client and server (#1508)

* Add validation of required properties
Add Header extraction for client
* Remove some todos
* Add Test for Store API
Improve some checks for serialization
This commit is contained in:
sunn
2018-11-29 11:00:37 +01:00
committed by GitHub
parent 5b4a19849e
commit 308515bbc1
53 changed files with 966 additions and 394 deletions

View File

@@ -1,8 +1,10 @@
#include <QCoreApplication>
#include "PetApiTests.h"
#include "StoreApiTests.h"
int main(int argc, char *argv[]) {
QCoreApplication a(argc, argv);
PetApiTests::runTests();
StoreApiTests::runTests();
return a.exec();
}