File: main-test.cpp

package info (click to toggle)
packagesearch 2.7.4
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,248 kB
  • ctags: 2,161
  • sloc: cpp: 12,401; perl: 251; makefile: 69; sh: 13
file content (15 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef __UNIT_TEST_PP

#include <UnitTest++.h>

#include <QApplication>


int main(int argc, char* argv[])
{
	QApplication app(argc, argv);
	return UnitTest::RunAllTests();
// 	return app.exec();
}

#endif