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

« back to all changes in this revision

Viewing changes to tests/src/core/testqgsscalecalculator.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 <qgsscalecalculator.h>
7
 
 
8
 
class TestQgsScaleCalculator: public QObject
9
 
{
10
 
  Q_OBJECT;
11
 
  private slots:
12
 
        void QgsScaleCalculatorQgsScaleCalculator()
13
 
{
14
 
 
15
 
};
16
 
    void QgsScaleCalculatorsetDpi()
17
 
{
18
 
 
19
 
};
20
 
    void QgsScaleCalculatorsetMapUnits()
21
 
{
22
 
 
23
 
};
24
 
    void QgsScaleCalculatorcalculate()
25
 
{
26
 
 
27
 
};
28
 
    void QgsScaleCalculatorcalculateGeographicDistance()
29
 
{
30
 
 
31
 
};
32
 
 
33
 
};
34
 
 
35
 
QTEST_MAIN(TestQgsScaleCalculator)
36
 
#include "testqgsscalecalculator.moc.cpp"
37
 
 
38
 
 
39
 
 
40