#ifndef TST_CSTLCOMPILER_H #define TST_CSTLCOMPILER_H #include #include #include enum class NUMBER_ATTR : char { ZERO, TWO, THREE }; class TST_CSTLCompiler : public QObject { Q_OBJECT const QByteArray header = "TestHeader"; private slots: void test(); void testImport(); void testForOutIf(); void fillClient(ClientTest &client, short h); QByteArray buildHtmlForIf(const QByteArray &condition, NUMBER_ATTR number = NUMBER_ATTR::TWO); void createFile(const QString &name, const QByteArray &content); }; #endif // TST_CSTLCOMPILER_H