summaryrefslogtreecommitdiffstats
path: root/tests/AllTests.qml
diff options
context:
space:
mode:
authorSunil Thaha <sunil.thaha@nokia.com>2012-08-21 15:11:48 +1000
committerSunil Thaha <sunil.thaha+qt@gmail.com>2012-08-21 07:29:26 +0200
commit8b3982051badc30d387366bea517cbaaf0a44455 (patch)
tree56de6eb123760620910f5360407ee0929224777f /tests/AllTests.qml
parenteeb6f6284e40dd0182070b11f2e106437a31b7e1 (diff)
QtSystemTest rocks
Initial version of QtSystemTest based on the former QtUiTest Change-Id: I99b72d26dc623ce5e4a665d3dda380b9fe4eef9d Reviewed-by: Shane Bradley <shane.bradley@nokia.com> Reviewed-by: Sunil Thaha <sunil.thaha+qt@gmail.com> Reviewed-by: David Clark <dac@dclark.org.uk>
Diffstat (limited to 'tests/AllTests.qml')
-rw-r--r--tests/AllTests.qml53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/AllTests.qml b/tests/AllTests.qml
new file mode 100644
index 0000000..cdae596
--- /dev/null
+++ b/tests/AllTests.qml
@@ -0,0 +1,53 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/
+**
+** This file is part of QtSystemTest.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** 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, Nokia gives you certain additional
+** rights. These rights are described in the Nokia 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.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 1.1
+import QtSystemTest 1.0
+
+TestCollection {
+ id: suite
+ name: 'All tests'
+ description: 'Tests all the cases'
+
+ InterpreterTests {}
+ RemoteTests {}
+
+}