~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to providers/2015.com.canonical.certification:qml-tests/data/msg-01.qml

  • Committer: Tarmac
  • Author(s): Brendan Donegan
  • Date: 2013-06-03 11:12:58 UTC
  • mfrom: (2154.2.1 bug1185759)
  • Revision ID: tarmac-20130603111258-1b3m5ydvkf1accts
"[r=zkrynicki][bug=1185759][author=brendan-donegan] automatic merge by tarmac"

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * This file is part of Checkbox.
3
 
 *
4
 
 * Copyright 2015 Canonical Ltd.
5
 
 * Written by:
6
 
 *   Jonathan Cave <jonathan.cave@canonical.com>
7
 
 *
8
 
 * Checkbox is free software: you can redistribute it and/or modify
9
 
 * it under the terms of the GNU General Public License version 3,
10
 
 * as published by the Free Software Foundation.
11
 
 *
12
 
 * Checkbox is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
19
 
 */
20
 
import QtQuick 2.2
21
 
 
22
 
Item {
23
 
    id: smsTest
24
 
 
25
 
    anchors.fill: parent
26
 
 
27
 
    property var testingShell
28
 
    signal testDone(var test)
29
 
 
30
 
    GenericSmsTest {
31
 
        id: testPages
32
 
 
33
 
        Component.onCompleted: {
34
 
            testPages.modemPath = "/ril_0"
35
 
 
36
 
            testPages.setTestActionText(i18n.tr("Send an SMS message to a"
37
 
                                                + " single contact..."))
38
 
 
39
 
            testPages.setPredefinedContent(i18n.tr("The aim of art is to"
40
 
                    + " represent not the outward appearance of things, but"
41
 
                    + " their inward significance. Aristotle"))
42
 
        }
43
 
    }
44
 
}
45
 
 
46
 
 
47