summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/shared/qt_webengine_quicktest.h
diff options
context:
space:
mode:
authorAdam Kallai <kadam@inf.u-szeged.hu>2014-01-16 09:09:25 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-20 13:56:06 +0100
commit0d85992198886cfb2b55087bcf9fe2acb9da84de (patch)
tree7f95294859ee37614e55444da78c97ffd901da98 /tests/auto/quick/shared/qt_webengine_quicktest.h
parent13416b2db167dc1849e4af94391d3c6ae602ec76 (diff)
Add QML test framework and titleChanged test case
Change-Id: Ie38ee02e485702d10d0c171f2168f2685c2de2a6 Reviewed-by: Peter Varga <pvarga@inf.u-szeged.hu> Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com> Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'tests/auto/quick/shared/qt_webengine_quicktest.h')
-rw-r--r--tests/auto/quick/shared/qt_webengine_quicktest.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/tests/auto/quick/shared/qt_webengine_quicktest.h b/tests/auto/quick/shared/qt_webengine_quicktest.h
new file mode 100644
index 000000000..d3ce305fd
--- /dev/null
+++ b/tests/auto/quick/shared/qt_webengine_quicktest.h
@@ -0,0 +1,79 @@
+/****************************************************************************
+**
+** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Quick Controls module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia. For licensing terms and
+** conditions see http://qt.digia.com/licensing. For further information
+** use the contact form at http://qt.digia.com/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Digia gives you certain additional
+** rights. These rights are described in the Digia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QT_WEBENGINE_QUICKTEST_H
+#define QT_WEBENGINE_QUICKTEST_H
+
+#include <QtQuickTest/quicktestglobal.h>
+
+#ifdef QT_WIDGETS_LIB
+#include <QtWidgets/QApplication>
+#else
+#include <QtGui/QGuiApplication>
+#endif
+
+QT_BEGIN_NAMESPACE
+
+#ifndef QUICK_TEST_SOURCE_DIR
+#define QUICK_TEST_SOURCE_DIR 0
+#endif
+
+#ifdef QT_WIDGETS_LIB
+#define Application QApplication
+#else
+#define Application QGuiApplication
+#endif
+
+#define QT_WEBENGINE_TEST_MAIN(name) \
+ int main(int argc, char **argv) \
+ { \
+ Application* app = 0; \
+ qputenv("QTWEBENGINEPROCESS_PATH", QWP_PATH); \
+ if (!QCoreApplication::instance()) \
+ app = new Application(argc, argv); \
+ int i = quick_test_main(argc, argv, #name, QUICK_TEST_SOURCE_DIR); \
+ delete app; \
+ return i; \
+ }
+
+QT_END_NAMESPACE
+
+#endif // QT_WEBENGINE_QUICKTEST_H