mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
30 lines
606 B
C++
30 lines
606 B
C++
/* ResMed Unit Tests
|
|
*
|
|
* Copyright (c) 2019-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 RESMEDTESTS_H
|
|
#define RESMEDTESTS_H
|
|
|
|
#include "AutoTest.h"
|
|
#include "../SleepLib/loader_plugins/resmed_loader.h"
|
|
|
|
class ResmedTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private slots:
|
|
void initTestCase();
|
|
//void testChunksToYaml();
|
|
void testSessionsToYaml();
|
|
void cleanupTestCase();
|
|
};
|
|
|
|
DECLARE_TEST(ResmedTests)
|
|
|
|
#endif // RESMEDTESTS_H
|
|
|