forked from loafle/openapi-generator-original
* Add enum support to Qt5 client and server * Correct model name prefix * Remove tabs * Correct wrong filename when prefix used
13 lines
291 B
C++
13 lines
291 B
C++
#include <QCoreApplication>
|
|
#include "PetApiTests.h"
|
|
#include "StoreApiTests.h"
|
|
#include "UserApiTests.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QCoreApplication a(argc, argv);
|
|
PetApiTests::runTests();
|
|
StoreApiTests::runTests();
|
|
UserApiTests::runTests();
|
|
return a.exec();
|
|
}
|