4
1
mirror of https://github.com/QuasarApp/Heart.git synced 2025-05-09 07:59:45 +00:00
2023-12-31 09:39:11 +01:00

31 lines
594 B
C++

//#
//# Copyright (C) 2021-2024 QuasarApp.
//# Distributed under the lgplv3 software license, see the accompanying
//# Everyone is permitted to copy and distribute verbatim copies
//# of this license document, but changing it is not allowed.
//#
#ifndef SHEDULLERTEST_H
#define SHEDULLERTEST_H
#include "test.h"
#include "testutils.h"
#include <QtTest>
class ShedullerTest: public Test, protected TestUtils
{
public:
ShedullerTest();
void test() override;
private:
void testSingleMode();
void testRepeatMode();
void testTimePointMode();
};
#endif // SHEDULLERTEST_H