summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/resourcetester.cpp
blob: 043ec75fc3fdcf19d98c8d709ef6440f599bd228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#include "resourcetester.h"

#include <QDebug>
#include <QApplication>
#include <QFile>
#include <QTimer>

ResourceTester::ResourceTester(QObject *parent)
  : QObject(parent)
{

}

void ResourceTester::doTest()
{
  if (!QFile::exists(":/CMakeLists.txt"))
      qApp->exit(EXIT_FAILURE);
  if (!QFile::exists(":/main.cpp"))
      qApp->exit(EXIT_FAILURE);
#ifdef TEST_DEBUG_CLASS
  if (!QFile::exists(":/debug_class.ui"))
      qApp->exit(EXIT_FAILURE);
#endif

  QTimer::singleShot(0, qApp, SLOT(quit()));
}