ad36da8ff4
... by moving them in QTestPrivate namespace (qtesthelpers_p.h). This header file is a convenient staging area for helper APIs, eventually some could be moved to public QTest API. This header file utilizes the same pattern as other qtestlib header files - wrapping functions with QT_${LIBNAME}_LIB to automatically enable certain APIs based on what is in the projects dependencies, e.g. QT += widgets. Change-Id: Ic0266429939c1f3788912ad8b84fc6e0d5edd68b Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
12 lines
298 B
Prolog
12 lines
298 B
Prolog
CONFIG += testcase
|
|
testcase.timeout = 500 # this test is slow
|
|
TARGET = tst_qgraphicsview
|
|
|
|
QT += widgets widgets-private testlib
|
|
QT += core-private gui-private testlib-private
|
|
|
|
SOURCES += tst_qgraphicsview.cpp tst_qgraphicsview_2.cpp
|
|
HEADERS += tst_qgraphicsview.h
|
|
DEFINES += QT_NO_CAST_TO_ASCII
|
|
|