summaryrefslogtreecommitdiffstats
path: root/kmail/tests/messagedicttests.h
blob: f60a3b2f0dfed4d6a8803f04b436c9cd784bb90d (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 <tdeunittest/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