paysages3d/src/tests/main.cpp
2016-07-23 22:58:32 +02:00

22 lines
386 B
C++

#include "BaseTestCase.h"
#include "Logs.h"
#include <QtCore/QDebug>
void noMessageOutput(QtMsgType, const QMessageLogContext &, const QString &) {
}
int main(int argc, char **argv) {
int result;
qInstallMessageHandler(noMessageOutput);
#ifdef NDEBUG
Logs::disable();
#endif
testing::InitGoogleTest(&argc, argv);
result = RUN_ALL_TESTS();
return result;
}