Qt 单元测试:执行时间
Posted
技术标签:
【中文标题】Qt 单元测试:执行时间【英文标题】:Qt unit tests: time of execution 【发布时间】:2015-05-26 19:38:51 【问题描述】:我正在使用来自 qt 库的单元测试框架。
并寻找一个功能 - 每个测试花费多少时间独立于通过/失败的结果。
有可能吗?
【问题讨论】:
你可以使用 QTimer。 查看上一个问题:Get elapsed time in Qt 【参考方案1】:没有自动报告所有测试时间的方法,但 Qt Test 模块有一个benchmarking feature,您可以将每个测试包装在其中。
class MyFirstBenchmark: public QObject
Q_OBJECT
private slots:
void myFirstBenchmark()
QString string1;
QString string2;
QBENCHMARK
string1.localeAwareCompare(string2);
;
【讨论】:
以上是关于Qt 单元测试:执行时间的主要内容,如果未能解决你的问题,请参考以下文章