Added address resolution, and moved everything up one directory.
[ptas] / zouba / tests / ut_location / ut_location.h
1 #ifndef UT_LOCATION_H
2 #define UT_LOCATION_H
3
4 #include <QtTest/QtTest>
5 #include <QObject>
6
7 #include <location_p.h>
8
9 Q_DECLARE_METATYPE(LocationPrivate*);
10
11 class Ut_Location : public QObject
12 {
13     Q_OBJECT
14
15 public:
16
17 private slots:
18     void init();
19     void cleanup();
20     void initTestCase();
21     void cleanupTestCase();
22     void testParseReply();
23     void testSet();
24
25 private:
26     LocationPrivate *m_subject;
27 };
28 #endif // UT_LOCATION_H