/* * Copyright (C) 2005 Till Adam * * This file is subject to the GPL version 2. */ #ifndef MESSAGEDICTTESTS_H #define MESSAGEDICTTESTS_H #include 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