mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-26 20:03:10 +00:00
30 lines
No EOL
405 B
C
30 lines
No EOL
405 B
C
{% load kdev_filters %}
|
|
{% include "license_header_cpp.txt" %}
|
|
|
|
|
|
#ifndef {{ name|upper }}_H
|
|
#define {{ name|upper }}_H
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
class {{ name }} : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void initTestCase();
|
|
void cleanupTestCase();
|
|
|
|
|
|
void init();
|
|
void cleanup();
|
|
|
|
|
|
{% for case in testCases %}
|
|
void {{ case }}();
|
|
{% endfor %}
|
|
};
|
|
|
|
|
|
#endif // {{ name|upper }}_H
|