mirror of
https://github.com/loimu/zeit.git
synced 2025-09-15 12:58:44 +08:00
29 lines
490 B
C++
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_ */
|