mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
Moved PQs from blackcore to blackmisc, added header for namespace, mainpage.dox for Doxygen
This commit is contained in:
21
tests/blackmisc/main.cpp
Normal file
21
tests/blackmisc/main.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include <QCoreApplication>
|
||||
#include <QDebug>
|
||||
#include "testmain.h"
|
||||
|
||||
using namespace BlackMiscTest;
|
||||
|
||||
/*!
|
||||
* Starter for testcases
|
||||
* \brief main
|
||||
* \param argc
|
||||
* \param argv
|
||||
* \return
|
||||
*/
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
QCoreApplication a(argc, argv);
|
||||
TestMain::unitMain(argc, argv);
|
||||
|
||||
// bye
|
||||
return a.exec();
|
||||
}
|
||||
Reference in New Issue
Block a user