~ubuntu-branches/ubuntu/trusty/qgis/trusty

« back to all changes in this revision

Viewing changes to tests/src/core/testqgsprovidermetadata.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <QtTest>
2
 
#include <QObject>
3
 
#include <QString>
4
 
#include <QObject>
5
 
//header for class being tested
6
 
#include <qgsprovidermetadata.h>
7
 
 
8
 
class TestQgsProviderMetadata: public QObject
9
 
{
10
 
  Q_OBJECT;
11
 
  private slots:
12
 
        void QgsProviderMetadataQgsProviderMetadata()
13
 
{
14
 
 
15
 
};
16
 
    void QgsProviderMetadatakey()
17
 
{
18
 
 
19
 
};
20
 
    void QgsProviderMetadatadescription()
21
 
{
22
 
 
23
 
};
24
 
    void QgsProviderMetadatalibrary()
25
 
{
26
 
 
27
 
};
28
 
 
29
 
};
30
 
 
31
 
QTEST_MAIN(TestQgsProviderMetadata)
32
 
#include "testqgsprovidermetadata.moc.cpp"
33
 
 
34
 
 
35
 
 
36