summaryrefslogtreecommitdiffstats
path: root/kmail/tests/messagedicttests.h
blob: 42bed1abb6b03186772f846fb0e6ada47c0a10e7 (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
{
    TQ_OBJECT
  

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

#endif