You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
523 B
32 lines
523 B
/*
|
|
* 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
|