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

« back to all changes in this revision

Viewing changes to tests/src/gui/testqgsmapcanvasmap.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 <qgsmapcanvasmap.h>
 
7
 
 
8
class TestQgsMapCanvasMap: public QObject
 
9
{
 
10
  Q_OBJECT;
 
11
  private slots:
 
12
        void QgsMapCanvasMapQgsMapCanvasMap()
 
13
{
 
14
 
 
15
};
 
16
    void QgsMapCanvasMapdrawShape()
 
17
{
 
18
 
 
19
};
 
20
    void QgsMapCanvasMapresize()
 
21
{
 
22
 
 
23
};
 
24
    void QgsMapCanvasMaprender()
 
25
{
 
26
 
 
27
};
 
28
 
 
29
};
 
30
 
 
31
QTEST_MAIN(TestQgsMapCanvasMap)
 
32
#include "testqgsmapcanvasmap.moc.cpp"
 
33
 
 
34
 
 
35
 
 
36