如何为测试用例编写qmake文件?

时间:2014-06-11 02:50:20

标签: c++ qt qmake qtestlib

我只是不明白Qt项目的总体布局是什么,有程序和测试......

QTest教程项目只有测试程序,但我的项目已有另一个程序。如果我添加测试用例,它声称" main()"的多个定义,因为 QTEST_MAIN 实际上是另一个 main()

此外,我得到了未定义的引用vtable"在我的考试课上,并不知道为什么......

我使用的是Qt 5.2.1

这是我的项目文件:

#-------------------------------------------------
#
# Project created by QtCreator 2014-06-06T13:42:19
#
#-------------------------------------------------

QT       += core gui testlib
CONFIG += testcase

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = GutMiner
TEMPLATE = app
LIBS += -lquazip


SOURCES += main.cpp\
        mainwindow.cpp \
    dataform.cpp \
    datavec.cpp \
    distance.cpp \
    linereader.cpp \
    diseasepackage.cpp \
    error.cpp \
    newpagedialog.cpp \
    resultpage.cpp \
    test.cpp

HEADERS  += mainwindow.h \
    dataform.h \
    distance.h \
    datavec.h \
    linereader.h \
    diseasepackage.h \
    error.h \
    newpagedialog.h \
    resultpage.h

FORMS    += mainwindow.ui \
    dataform.ui \
    newpagedialog.ui

这是我的测试源文件:

#include <QObject>
#include <QTest>

#include "distance.h"
#include "diseasepackage.h"

class TestDistance: public QObject
{
    Q_OBJECT
public:
    virtual ~TestDistance();
private slots:
    void jensen_shannon();
};

TestDistance::~TestDistance() {}

void TestDistance::jensen_shannon()
{
    DiseasePackage pkg("CRC.zip");
}

QTEST_MAIN(TestDistance);

1 个答案:

答案 0 :(得分:2)

使这项工作正常的一种方法(我使用Qt 4.8的方法)是为测试程序提供一个单独的.pro文件。

主程序的.pro文件不包含测试代码。

QT       += core gui qt3support xml script

TARGET = simui
TEMPLATE = app

SOURCES += main.cpp\
    <lots of other source files

HEADERS  += \
    < header files>

FORMS    += \
    < form files > 

测试程序的.pro文件不包含main.cpp。测试程序的.pro文件包含测试库:

QT      += core gui qt3support xml script
CONFIG  += qtestlib

TARGET = testsimui
TEMPLATE = app

SOURCES += \
    < all the sources form the main program (except main.cpp!) > 
    < all the test code sources. >

HEADERS += \
    < all the headers from the main program >
    < all the test code headers> 

FORMS    += \
    < all the forms from the main program > 

这不一定是最好的设置,但它确实很好用,但最终必须将每个源文件添加到两个.pro文件中。

关于你的vtable问题,我不认为你已经提供了足够的信息来制作任何东西。什么课有问题?另外,我很好奇为什么你的测试类上有一个空的析构函数。