blob: 52a09cc620538dcd7e52cca3842d7c4d0509b8de (
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
TQ_OBJECT
public slots:
void setUp();
void tearDown();
void testKMDictCreation();
void testKMDictInsert();
void testKMDictRemove();
void testKMDictClear();
void testKMDictReplace();
private:
KMDict *m_dict;
};
#endif
|