summaryrefslogtreecommitdiffstats
path: root/kmail/tests/messagedicttests.h
blob: abff55dac0f824ac0ca9732a20b914dd8a65080e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (C)  2005  Till Adam <adam@kde.org>
 *
 * This file is subject to the GPL version 2.
 */

#ifndef MESSAGEDICTTESTS_H
#define MESSAGEDICTTESTS_H

#include <kunittest/tester.h>

class KMDict;

class MessageDictTester : public KUnitTest::SlotTester
{
    Q_OBJECT
  

public slots:
    void setUp();
    void tearDown();
    void testKMDictCreation();
    void testKMDictInsert();
    void testKMDictRemove();
    void testKMDictClear();
    void testKMDictReplace();
private:
    KMDict *m_dict;
};

#endif