mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
25 lines
469 B
C++
25 lines
469 B
C++
#ifndef KACTIONCATEGORYTEST_H
|
|
#define KACTIONCATEGORYTEST_H
|
|
|
|
#include <qtest_kde.h>
|
|
|
|
class tst_KActionCategory : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
// Test the creation of action categories,
|
|
void tstCreation();
|
|
|
|
// Check the synchronization between the action category and the
|
|
// collection
|
|
void tstSynchronization();
|
|
|
|
// Test the creation of actions
|
|
void tstActionCreation();
|
|
|
|
}; // class tst_KActionCategory
|
|
|
|
|
|
#endif
|