/** * @file ssuurlresolvertest.h * @copyright 2013 Jolla Ltd. * @author Martin Kampas * @date 2013 */ #ifndef _SSUURLRESOLVERTEST_H #define _SSUURLRESOLVERTEST_H #include class Sandbox; class SsuUrlResolverTest: public QObject { Q_OBJECT public: SsuUrlResolverTest(): m_sandbox(0) {} private slots: void initTestCase(); void cleanupTestCase(); void test_data(); void test(); private: Sandbox *m_sandbox; }; #endif