summaryrefslogtreecommitdiffstats
path: root/tests/tst_applicationstart.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tst_applicationstart.qml')
-rw-r--r--tests/tst_applicationstart.qml41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/tst_applicationstart.qml b/tests/tst_applicationstart.qml
deleted file mode 100644
index 16107ec0..00000000
--- a/tests/tst_applicationstart.qml
+++ /dev/null
@@ -1,41 +0,0 @@
1/*
2 * Copyright 2017 Christian Mollekopf <mollekopf@kolabsys.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Library General Public License as
6 * published by the Free Software Foundation; either version 2, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Library General Public License for more details
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
19
20import QtQuick 2.7
21import QtQuick.Controls 2.0
22import QtQuick.Window 2.1
23import QtTest 1.0
24import org.kube.components.kube 1.0 as Kube
25
26
27TestCase {
28 id: testCase
29 width: 400
30 height: 400
31 name: "ApplicationStart"
32
33 Kube.Kube {
34 id: kube
35 }
36
37 function test_startToWizard() {
38 var accountWizard = findChild(kube, "accountWizard");
39 verify(accountWizard.visible)
40 }
41}