mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
23 lines
362 B
C++
23 lines
362 B
C++
#include "testblackmiscmain.h"
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
|
|
using namespace BlackMiscTest;
|
|
|
|
/*!
|
|
* Starter for test cases
|
|
* \brief main
|
|
* \param argc
|
|
* \param argv
|
|
* \return
|
|
*/
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
CBlackMiscTestMain::unitMain(argc, argv);
|
|
Q_UNUSED(a);
|
|
|
|
// bye
|
|
return 0;
|
|
}
|