QtNovelUI/CoreTest/main.cpp

17 lines
279 B
C++

#include <QCoreApplication>
#include "configtest.h"
#include "xmlconfig.h"
using namespace TestCase;
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
ConfigTest t0(new Config::XMLConfig());
QTest::qExec(&t0, argc, argv);
return a.exec();
}