~ubuntu-branches/ubuntu/hardy/qgis/hardy

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): William Grant
  • Date: 2007-05-06 13:42:32 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070506134232-pyli6t388w5asd8x
Tags: 0.8.0-3ubuntu1
* Merge from Debian unstable. Remaining Ubuntu changes:
  - debian/rules, debian/qgis.install, debian/qgis.dirs debian/qgis.desktop:
    Add and install .desktop.
* debian/qgis.desktop: Remove Applications category; it's not real.
* Modify Maintainer value to match Debian-Maintainer-Field Spec

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 <qgsproviderregistry.h>
 
7
 
 
8
class TestQgsProviderRegistry: public QObject
 
9
{
 
10
  Q_OBJECT;
 
11
  private slots:
 
12
        void QgsProviderRegistryinstance()
 
13
{
 
14
 
 
15
};
 
16
    void QgsProviderRegistryQgsProviderRegistry()
 
17
{
 
18
 
 
19
};
 
20
    void QgsProviderRegistrylibrary()
 
21
{
 
22
 
 
23
};
 
24
    void QgsProviderRegistrypluginList()
 
25
{
 
26
 
 
27
};
 
28
    void QgsProviderRegistrysetLibraryDirectory()
 
29
{
 
30
 
 
31
};
 
32
    void QgsProviderRegistrylibraryDirectory()
 
33
{
 
34
 
 
35
};
 
36
    void QgsProviderRegistrygetProvider()
 
37
{
 
38
 
 
39
};
 
40
    void QgsProviderRegistryfileVectorFilters()
 
41
{
 
42
 
 
43
};
 
44
    void QgsProviderRegistryopenVector()
 
45
{
 
46
 
 
47
};
 
48
 
 
49
};
 
50
 
 
51
QTEST_MAIN(TestQgsProviderRegistry)
 
52
#include "testqgsproviderregistry.moc.cpp"
 
53
 
 
54
 
 
55
 
 
56