我想在代码中使用QTest宏QCOMPARE,但收到错误。
QTestString.h
#ifndef QTESTSTRING_H
#define QTESTSTRING_H
#include <QtCore/QString>
#include <QtTest/QtTest>
class TestqstringTest : public QObject
{
Q_OBJECT
public:
TestqstringTest();
private slots:
void testCase1();
};
#endif // QTESTSTRING_H
QTestString.cpp
#include "QTestString.h"
TestqstringTest::TestqstringTest()
{
testCase1();
}
void TestqstringTest::testCase1()
{
QString str = "Hello";
QCOMPARE(str.toUpper(),(QString)"hELLO");
}
main.cpp
#include "QTestString.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
TestqstringTest *test = new TestqstringTest();
return a.exec();
}
但是,我收到以下错误:
最佳答案
我找到了答案,必须使用int QTest::qExec ( QObject * testObject, int argc = 0, char ** argv = 0 )
来执行它,然后正确地输出测试日志。
关于c++ - 使用QTest宏QCOMPARE时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17288819/