Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 491 Bytes

ssuurlresolvertest.h

File metadata and controls

32 lines (24 loc) · 491 Bytes
 
Apr 2, 2013
Apr 2, 2013
1
2
3
4
5
6
7
8
9
10
11
12
/**
* @file ssuurlresolvertest.h
* @copyright 2013 Jolla Ltd.
* @author Martin Kampas <martin.kampas@tieto.com>
* @date 2013
*/
#ifndef _SSUURLRESOLVERTEST_H
#define _SSUURLRESOLVERTEST_H
#include <QObject>
May 24, 2013
May 24, 2013
13
14
class Sandbox;
Oct 10, 2016
Oct 10, 2016
15
16
class SsuUrlResolverTest: public QObject
{
Apr 2, 2013
Apr 2, 2013
17
18
Q_OBJECT
Oct 10, 2016
Oct 10, 2016
19
public:
May 24, 2013
May 24, 2013
20
21
SsuUrlResolverTest(): m_sandbox(0) {}
Oct 10, 2016
Oct 10, 2016
22
private slots:
Apr 2, 2013
Apr 2, 2013
23
void initTestCase();
May 24, 2013
May 24, 2013
24
void cleanupTestCase();
Apr 2, 2013
Apr 2, 2013
25
26
27
void test_data();
void test();
Oct 10, 2016
Oct 10, 2016
28
private:
May 24, 2013
May 24, 2013
29
Sandbox *m_sandbox;
Apr 2, 2013
Apr 2, 2013
30
31
32
};
#endif