mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
29 lines
554 B
C++
29 lines
554 B
C++
/* ZEO Unit Tests
|
|
*
|
|
* Copyright (c) 2020-2022 The OSCAR Team
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the source code
|
|
* for more details. */
|
|
|
|
#ifndef ZEOTESTS_H
|
|
#define ZEOTESTS_H
|
|
|
|
#include "AutoTest.h"
|
|
#include "../SleepLib/loader_plugins/zeo_loader.h"
|
|
|
|
class ZeoTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
void testSessionsToYaml();
|
|
void cleanupTestCase();
|
|
};
|
|
|
|
DECLARE_TEST(ZeoTests)
|
|
|
|
#endif // ZEOTESTS_H
|
|
|