~dobey/unity-api/add-simple-logger

« back to all changes in this revision

Viewing changes to src/modules/TestUtil/testutil.h

  • Committer: Michał Sawicz
  • Date: 2013-05-13 14:31:11 UTC
  • mto: (32.5.6 add-notifications)
  • mto: This revision was merged to the branch mainline in revision 44.
  • Revision ID: michal.sawicz@canonical.com-20130513143111-qs3d8fpjl4d9ce01
add QmlTest and TestUtil module

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012, 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
 
 
18
#ifndef TESTUTIL_H
 
19
#define TESTUTIL_H
 
20
 
 
21
#include <QtQuick/QQuickItem>
 
22
 
 
23
class TestUtil : public QObject
 
24
{
 
25
    Q_OBJECT
 
26
    Q_DISABLE_COPY(TestUtil)
 
27
 
 
28
public:
 
29
    TestUtil(QObject *parent = 0);
 
30
    ~TestUtil();
 
31
 
 
32
    Q_INVOKABLE bool isInstanceOf(QObject*, QString);
 
33
};
 
34
 
 
35
QML_DECLARE_TYPE(TestUtil)
 
36
 
 
37
#endif // TESTUTIL_H