aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quicktest/quicktest.pro
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2018-01-19 09:02:39 +0100
committerShawn Rutledge <shawn.rutledge@qt.io>2018-02-02 07:37:18 +0000
commitc260d3062de83d7f051e531007771455915285e5 (patch)
tree2a580af291a1b9886f7bcad2e58657a53bcd8706 /tests/auto/quicktest/quicktest.pro
parent7e557ffba1aeacd9e6d887b9e526541682ac4779 (diff)
Add QUICK_TEST_MAIN_WITH_SETUP to allow executing C++ before a QML test
This macro is the same as QUICK_TEST_MAIN, but takes the user's QObject subclass as an argument, and calls pre-defined slots/invokable functions on it, similar to how e.g. init() is called for C++ tests. This allows e.g. context properties to be set for the QML tests. By basing the API on invokable functions, we give ourselves the freedom to easily add more functions in the future. [ChangeLog][QtQuickTest] Added QUICK_TEST_MAIN_WITH_SETUP macro to allow executing C++ before a QML test (such as registering context properties). Task-number: QTBUG-50064 Change-Id: Id566e388553811c220871248403d32545f8ae1eb Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'tests/auto/quicktest/quicktest.pro')
-rw-r--r--tests/auto/quicktest/quicktest.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/quicktest/quicktest.pro b/tests/auto/quicktest/quicktest.pro
index 3b4ec23a64..9d909f1d16 100644
--- a/tests/auto/quicktest/quicktest.pro
+++ b/tests/auto/quicktest/quicktest.pro
@@ -1,3 +1,4 @@
TEMPLATE = subdirs
SUBDIRS = \
- signalspy
+ signalspy \
+ quicktestmainwithsetup