25 lines
522 B
C++
25 lines
522 B
C++
#ifndef CONTENTPRESENTTEST_H
|
|
#define CONTENTPRESENTTEST_H
|
|
|
|
#include <QObject>
|
|
#include "DocsManager.h"
|
|
|
|
namespace TestCase {
|
|
class ContentPresentTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ContentPresentTest(MakeTools::ContentPresent *view);
|
|
|
|
private:
|
|
MakeTools::ContentPresent *inst;
|
|
|
|
private slots:
|
|
void test_Suffixes();
|
|
void test_NewInst_Widget();
|
|
void test_ApplySetting();
|
|
void test_Create_Load_SaveAs();
|
|
};
|
|
}
|
|
#endif // CONTENTPRESENTTEST_H
|