OSCAR-code/oscar/tests/dreemtests.h
sawinglogz 32ffcc4f94 First pass at Dreem CSV loader.
Something's not quite right about the hypnogram timestamps, since
there are more than would fit within the start/stop times.
2020-01-29 20:00:33 -05:00

29 lines
563 B
C++

/* Dreem Unit Tests
*
* Copyright (c) 2020 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 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