QtNovelUI/WordsIDE/contentpresenttest.h

25 lines
518 B
C
Raw Normal View History

2023-02-26 14:44:00 +00:00
#ifndef CONTENTPRESENTTEST_H
#define CONTENTPRESENTTEST_H
#include <QObject>
#include "DocsManager.h"
namespace TestCase {
class ContentPresentTest : public QObject
{
Q_OBJECT
public:
2023-08-27 14:09:46 +00:00
ContentPresentTest(Components::FilePresent *view);
2023-02-26 14:44:00 +00:00
private:
2023-08-27 14:09:46 +00:00
Components::FilePresent *inst;
2023-02-26 14:44:00 +00:00
private slots:
void test_Suffixes();
void test_NewInst_Widget();
void test_ApplySetting();
void test_Create_Load_SaveAs();
};
}
#endif // CONTENTPRESENTTEST_H