~ubuntu-branches/ubuntu/natty/qgis/natty

« back to all changes in this revision

Viewing changes to tests/src/gui/testqgssinglesymboldialog.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 <qgssinglesymboldialog.h>
7
 
 
8
 
class TestQgsSingleSymbolDialog: public QObject
9
 
{
10
 
  Q_OBJECT;
11
 
  private slots:
12
 
        void QgsSingleSymbolDialogQgsSingleSymbolDialog()
13
 
{
14
 
 
15
 
};
16
 
    void QgsSingleSymbolDialogselectOutlineColor()
17
 
{
18
 
 
19
 
};
20
 
    void QgsSingleSymbolDialogselectFillColor()
21
 
{
22
 
 
23
 
};
24
 
    void QgsSingleSymbolDialogapply()
25
 
{
26
 
 
27
 
};
28
 
    void QgsSingleSymbolDialogsetOutlineColor()
29
 
{
30
 
 
31
 
};
32
 
    void QgsSingleSymbolDialogsetOutlineStyle()
33
 
{
34
 
 
35
 
};
36
 
    void QgsSingleSymbolDialogsetFillColor()
37
 
{
38
 
 
39
 
};
40
 
    void QgsSingleSymbolDialogsetFillStyle()
41
 
{
42
 
 
43
 
};
44
 
    void QgsSingleSymbolDialogsetOutlineWidth()
45
 
{
46
 
 
47
 
};
48
 
    void QgsSingleSymbolDialoggetOutlineColor()
49
 
{
50
 
 
51
 
};
52
 
    void QgsSingleSymbolDialoggetOutlineStyle()
53
 
{
54
 
 
55
 
};
56
 
    void QgsSingleSymbolDialoggetOutlineWidth()
57
 
{
58
 
 
59
 
};
60
 
    void QgsSingleSymbolDialoggetFillColor()
61
 
{
62
 
 
63
 
};
64
 
    void QgsSingleSymbolDialoggetFillStyle()
65
 
{
66
 
 
67
 
};
68
 
    void QgsSingleSymbolDialogresendSettingsChanged()
69
 
{
70
 
 
71
 
};
72
 
    void QgsSingleSymbolDialoglabel()
73
 
{
74
 
 
75
 
};
76
 
    void QgsSingleSymbolDialogsetLabel()
77
 
{
78
 
 
79
 
};
80
 
 
81
 
};
82
 
 
83
 
QTEST_MAIN(TestQgsSingleSymbolDialog)
84
 
#include "testqgssinglesymboldialog.moc.cpp"
85
 
 
86
 
 
87
 
 
88