ssu
Loading...
Searching...
No Matches
variablestest.h
Go to the documentation of this file.
1
7
8#ifndef _VARIABLESTEST_H
9#define _VARIABLESTEST_H
10
11#include <QObject>
12#include <QtTest/QtTest>
13#include <QHash>
14
15#include "libssu/ssu.h"
17
18class VariablesTest: public QObject
19{
20 Q_OBJECT
21
22private slots:
23 void initTestCase();
24 void cleanupTestCase();
25 void checkResolveString();
26
27
28private:
29 Ssu ssu;
30 SsuVariables var;
31 QHash <QString, QString> variables, urls;
32};
33
34#endif
Definition ssu.h:37