基本上我遵循基本示例here。我的.pro
文件包含QT += core network qtestlib
。 [解决] testlib 而不是错字qtestlib
当我包含QVERIFY
时,它会收到以下链接器错误:
testwaypointlist.obj:-1: error: LNK2019: unresolved external symbol "bool __cdecl
QTest::qVerify(bool,char const *,char const *,char const *,int)"
(?qVerify@QTest@@YA_N_NPBD11H@Z) referenced in function "private: void __thiscall
TestWaypointList::fillWaypoints(void)" (?fillWaypoints@TestWaypointList@@AAEXXZ)
我想要链接哪些文件?如果没有QVERIFY
,链接器错误就会消失。
标题文件:
#include <QObject>
#include <QtTest/QtTest>
#include "waypointlist.h"
//
// Testing the waypoint list
//
class TestWaypointList : public QObject
{
Q_OBJECT
private:
WaypointList _waypointList;
public:
explicit TestWaypointList(QObject *parent = 0);
private slots:
void fillWaypoints();
};
CPP:
//
// Fill the waypoint list
//
void TestWaypointList::fillWaypoints()
{
_waypointList = WaypointList();
.....
for (int i=0; i < TESTWPLISTCOUNT; i++) {
.....
TestWaypointList::_waypointList.updateOrAppend(id, timeframe);
}
QVERIFY(TestWaypointList::_waypointList.count() == 1); // causing the linker error
}
答案 0 :(得分:2)
在.pro文件中,您需要将QT += qtestlib
更改为QT += testlib
(请注意没有“q”)。
值得注意的是,您曾经能够执行此操作:CONFIG += qtestlib
,但根据this page上的注释,这不再是建议的链接到测试库的方式。