2015-05-15 11:27:03 -07:00

13 lines
181 B
C++

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