在 Qt 单元测试中,程序如何检索正在运行的测试的名称?
代码看起来像这样:
#include <QtTest>
class MyTest : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase()
{
}
void testCase1()
{
}
void cleanupTestCase()
{
// Want to print "finished testCase1" here
}
};
QTEST_APPLESS_MAIN(MyTest)
例如,它能找出触发测试的信号/槽的名称吗?