Added address resolution, and moved everything up one directory.
[ptas] / zouba / tests / ut_route / ut_route.h
1 #ifndef UT_ROUTE_H
2 #define UT_ROUTE_H
3
4 #include <QtTest/QtTest>
5 #include <QObject>
6
7 #include <route_p.h>
8
9 Q_DECLARE_METATYPE(RoutePrivate*);
10
11 class Ut_Route : 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 testSetFromLocation();
24     void testSetToLocation();
25
26 private:
27     RoutePrivate *m_subject;
28 };
29 #endif // UT_ROUTE_H