OSCAR-code/oscar/tests/prs1tests.h
sawinglogz 4511ee3677 PRS1 parsing regression test: generate YAML for each parsed chunk.
Each input file's chunks get emitted into a single output YAML file. As parsing
gets separated from conversion/import, this will allow for testing and
examination of the parsed input files before they are transformed into
sessions.
2019-05-18 19:20:36 -04:00

31 lines
601 B
C++

/* PRS1 Unit Tests
*
* Copyright (c) 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 PRS1TESTS_H
#define PRS1TESTS_H
#include "AutoTest.h"
#include "../SleepLib/loader_plugins/prs1_loader.h"
class PRS1Tests : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void testChunksToYaml();
void testSessionsToYaml();
// void test2();
void cleanupTestCase();
};
DECLARE_TEST(PRS1Tests)
#endif // PRS1TESTS_H