forked from loafle/openapi-generator-original
* Add validation of required properties Add Header extraction for client * Remove some todos * Add Test for Store API Improve some checks for serialization
11 lines
235 B
C++
11 lines
235 B
C++
#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();
|
|
}
|