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.
19 lines
269 B
19 lines
269 B
3 months ago
|
#ifndef TST_NOTEMODEL_H
|
||
|
#define TST_NOTEMODEL_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <QtTest>
|
||
|
|
||
|
class tst_NoteModel : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
tst_NoteModel();
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void initTestCase();
|
||
|
void cleanupTestCase();
|
||
|
};
|
||
|
|
||
|
#endif // TST_NOTEMODEL_H
|