為測試提供宏和函數。 更多...
| 包含 Qt Quick Test 相關的所有函數和宏 |
The C++ macros and functions can be included into your application using the following include statement:
#include <QtQuickTest>
There are two ways to link against the corresponding C++ library. If your test project uses a QML TestCase , you should already have the following line in your project file:
CONFIG += qmltestcase
This will cause the test to link to the C++ QtQuickTest library.
If you have a C++-only test project, you can add the following line to your project file:
QT += qmltest
另請參閱 在 QML 測試之前執行 C++ .