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.
22 lines
307 B
22 lines
307 B
7 days ago
|
#ifndef TST_MAINWINDOW_H
|
||
|
#define TST_MAINWINDOW_H
|
||
|
|
||
|
#include <QString>
|
||
|
#include <QtTest>
|
||
|
#include "../src/mainwindow.h"
|
||
|
|
||
|
class tst_MainWindow : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
tst_MainWindow();
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
void initTestCase();
|
||
|
void cleanupTestCase();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // TST_MAINWINDOW_H
|