zeit/tests/tests.h
2016-08-12 13:37:50 +03:00

29 lines
490 B
C++

#ifndef TESTS_H_
#define TESTS_H_
#include <QtTest/QtTest>
#include <QObject>
#include "cthost.h"
#include "ctcron.h"
#include "cttask.h"
#include "ctInitializationError.h"
class CrontabLibTests: public QObject {
Q_OBJECT
CTHost* ctHost;
CTCron* cron;
CTTask* currentTask;
public:
CrontabLibTests(QObject *parent = nullptr) : QObject(parent) {
}
private slots:
void init();
void testTokenString();
};
#endif /* TESTS_H_ */