~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-20.qml

  • Committer: Zygmunt Krynicki
  • Date: 2013-05-17 13:54:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2130.
  • Revision ID: zygmunt.krynicki@canonical.com-20130517135425-cxcenxx5t0qrtbxd
checkbox-ng: add CheckBoxNG sub-project

CheckBoxNG (or lowercase as checkbox-ng, pypi:checkbox-ng) is a clean
implementation of CheckBox on top of PlainBox. It provides a new
executable, 'checkbox' that has some of the same commands that were
previously implemented in the plainbox package.

In particular CheckBoxNG comes with the 'checkbox sru' command
(the same one as in plainbox). Later on this sub-command will be removed
from plainbox.

CheckBoxNG depends on plainbox >= 0.3

Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>

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_1"
35
 
 
36
 
            testPages.setTestActionText(i18n.tr("Send an SMS Message to a"
37
 
                + " contact containing special characters..."))
38
 
 
39
 
            testPages.setPredefinedContent("!\"£$%😆^&*()😁")
40
 
        }
41
 
    }
42
 
}
43
 
 
44
 
 
45