aboutsummaryrefslogtreecommitdiff
path: root/test/hostlist/hostlisttest.h
blob: 96051a952b1f8a90b26ee24570e0ec7d3d3829a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef HOSTLIST_TEST
#define HOSTLIST_TEST

#include "filtertree.h"
#include <QObject>

class HostlistTest : public QObject
{
    Q_OBJECT

private slots:
    void parseList();

    void checkRules_data();
    void checkRules();

    void benchmark_parse();

private:
    FilterTree tree;
};

#endif