aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/tst_blackboxjava.h
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2016-08-04 12:00:41 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2016-08-08 20:17:04 +0000
commit188c160b658dc96a70afb08e80286866d6b4c507 (patch)
treeea72b10145ed31ffce5ec7b48051a391d47d1909 /tests/auto/blackbox/tst_blackboxjava.h
parent2c916bea64bc480282eeddfc1d55042be10fa4e9 (diff)
Split off the Java-related blackbox tests
They take an extraordinary amount of time and should thus run in parallel to the other tests. Change-Id: I435dd5506cc3f26e351c700ce6be2476d041b6af Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'tests/auto/blackbox/tst_blackboxjava.h')
-rw-r--r--tests/auto/blackbox/tst_blackboxjava.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/auto/blackbox/tst_blackboxjava.h b/tests/auto/blackbox/tst_blackboxjava.h
new file mode 100644
index 000000000..e8c1d400d
--- /dev/null
+++ b/tests/auto/blackbox/tst_blackboxjava.h
@@ -0,0 +1,53 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing
+**
+** This file is part of Qbs.
+**
+** 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 The Qt Company. For licensing terms and
+** conditions see http://www.qt.io/terms-conditions. For further information
+** use the contact form at http://www.qt.io/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 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, The Qt Company gives you certain additional
+** rights. These rights are described in The Qt Company LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#ifndef TST_BLACKBOX_H
+#define TST_BLACKBOX_H
+
+#include "tst_blackboxbase.h"
+
+class TestBlackboxJava : public TestBlackboxBase
+{
+ Q_OBJECT
+
+public:
+ TestBlackboxJava();
+
+private slots:
+ void android();
+ void android_data();
+ void java();
+ void javaDependencyTracking();
+
+private:
+ QMap<QString, QString> findAndroid(int *status);
+};
+
+#endif // TST_BLACKBOX_H