From 8a8729a371373d5c841e058ab21f4fdd0169b40a Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Tue, 27 Feb 2018 08:37:28 +0100 Subject: todo view scaffold --- views/todo/tests/tst_todo.qml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 views/todo/tests/tst_todo.qml (limited to 'views/todo/tests') diff --git a/views/todo/tests/tst_todo.qml b/views/todo/tests/tst_todo.qml new file mode 100644 index 00000000..46f7dba2 --- /dev/null +++ b/views/todo/tests/tst_todo.qml @@ -0,0 +1,36 @@ +/* + * Copyright 2017 Christian Mollekopf + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Library General Public License for more details + * + * You should have received a copy of the GNU Library General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +import QtQuick 2.7 +import QtTest 1.0 +import "../qml" + +TestCase { + width: 400 + height: 400 + name: "Todo" + + View { + id: view + } + + function test_start() { + verify(view) + } +} -- cgit v1.2.3