OSCAR-code/oscar/tests/prs1tests.h
sawinglogz daaed2de79 Move PRS1DataChunk into parser header and clean up dependencies.
Also move some previously static functions into their associated classes,
which lets us remove a few unnecessary wrapper functions used for testing.

No change in functionality.

Use git blame dd9a087 to follow the history before this refactoring.
2021-05-31 14:53:23 -04:00

31 lines
580 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"
class PRS1Tests : public QObject
{
Q_OBJECT
private slots:
void initTestCase();
void testMachineSupport();
void testChunksToYaml();
void testSessionsToYaml();
// void test2();
void cleanupTestCase();
};
DECLARE_TEST(PRS1Tests)
#endif // PRS1TESTS_H