10 lines
320 B
C++
10 lines
320 B
C++
|
|
// QML unit-test runner. Bootstraps the Qt Quick Test framework against
|
||
|
|
// the `tst_*.qml` files in this directory. Invoked via CMake's
|
||
|
|
// `qmltest` test target (CTest) or directly via the produced exe.
|
||
|
|
//
|
||
|
|
// PLAN.md §13 v0.2.0 testing-strategy row.
|
||
|
|
|
||
|
|
#include <QtQuickTest/quicktest.h>
|
||
|
|
|
||
|
|
QUICK_TEST_MAIN(qml_unit_tests)
|