forked from loafle/openapi-generator-original
9 lines
177 B
C++
9 lines
177 B
C++
#include <QCoreApplication>
|
|
#include "PetApiTests.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
QCoreApplication a(argc, argv);
|
|
PetApiTests::runTests();
|
|
return a.exec();
|
|
}
|