QtNovelUI/CoreTest/main.cpp

17 lines
279 B
C++
Raw Normal View History

2023-02-25 09:16:29 +00:00
#include <QCoreApplication>
#include "configtest.h"
2023-02-25 09:23:10 +00:00
#include "xmlconfig.h"
2023-02-25 09:16:29 +00:00
2023-02-25 09:44:18 +00:00
using namespace TestCase;
2023-02-25 09:16:29 +00:00
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
2023-02-25 09:23:10 +00:00
ConfigTest t0(new Config::XMLConfig());
2023-02-25 09:16:29 +00:00
QTest::qExec(&t0, argc, argv);
return a.exec();
}