Moved files to make zouba the only project.
[ptas] / 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 Q_DECLARE_METATYPE(QList<RouteData>);
11
12 class Ut_Route : public QObject
13 {
14     Q_OBJECT
15
16 public:
17
18 private slots:
19     void init();
20     void cleanup();
21     void initTestCase();
22     void cleanupTestCase();
23     void testParseReply();
24     void testParseReply_data();
25     void testSetFromLocation();
26     void testSetToLocation();
27
28 private:
29     RoutePrivate *m_subject;
30 };
31 #endif // UT_ROUTE_H