~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to iris/src/xmpp/qa/qttestutil/example/mysecondclasstest.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <QObject>
 
2
#include <QtTest/QtTest>
 
3
 
 
4
#include "qttestutil/qttestutil.h"
 
5
 
 
6
class MySecondClassTest : public QObject
 
7
{
 
8
     Q_OBJECT
 
9
        
 
10
        private slots:
 
11
                void initTestCase() {
 
12
                }
 
13
 
 
14
                void cleanupTestCase() {
 
15
                }
 
16
 
 
17
                void testMyMethod() {
 
18
                        QCOMPARE(1, 0); // Dummy test
 
19
                }
 
20
};
 
21
 
 
22
QTTESTUTIL_REGISTER_TEST(MySecondClassTest);
 
23
#include "mysecondclasstest.moc"