2020-01-30 00:59:05 +00:00
|
|
|
/* Dreem Unit Tests
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2020-2022 The OSCAR Team
|
2020-01-30 00:59:05 +00:00
|
|
|
*
|
|
|
|
* 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 DREEMTESTS_H
|
|
|
|
#define DREEMTESTS_H
|
|
|
|
|
|
|
|
#include "AutoTest.h"
|
|
|
|
#include "../SleepLib/loader_plugins/dreem_loader.h"
|
|
|
|
|
|
|
|
class DreemTests : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void initTestCase();
|
|
|
|
void testSessionsToYaml();
|
|
|
|
void cleanupTestCase();
|
|
|
|
};
|
|
|
|
|
|
|
|
DECLARE_TEST(DreemTests)
|
|
|
|
|
|
|
|
#endif // DREEMTESTS_H
|
|
|
|
|