Changes: (re)added and corrected zouba tests
[ptas] / zouba / tests / ut_location / ut_location.h
diff --git a/zouba/tests/ut_location/ut_location.h b/zouba/tests/ut_location/ut_location.h
new file mode 100644 (file)
index 0000000..552c4eb
--- /dev/null
@@ -0,0 +1,29 @@
+#ifndef UT_LOCATION_H
+#define UT_LOCATION_H
+
+#include <QtTest/QtTest>
+#include <QObject>
+
+#include <location_p.h>
+
+Q_DECLARE_METATYPE(LocationPrivate*);
+
+class Ut_Location : public QObject
+{
+Q_OBJECT
+
+public:
+
+private slots:
+  void init();
+  void cleanup();
+  void initTestCase();
+  void cleanupTestCase();
+  void testParseReply();
+  void testSet();
+  void testConstructorQGeoPositionInfo();
+
+private:
+  LocationPrivate *m_subject;
+};
+#endif // UT_LOCATION_H