1#include "tester.h" 2#include <QApplication> 3 4 5int main(int argc, char **argv) { 6 QApplication app(argc, argv); 7 Tester tester; 8 tester.show(); 9 tester.testEnvironment(); 10 tester.testExecutables(); 11 tester.verdict(); 12 return app.exec(); 13} 14 15