2019-05-05 01:53:02 +00:00
|
|
|
/* PRS1 Unit Tests
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2019-05-05 01:53:02 +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. */
|
|
|
|
|
2019-05-03 01:51:56 +00:00
|
|
|
#ifndef PRS1TESTS_H
|
|
|
|
#define PRS1TESTS_H
|
|
|
|
|
|
|
|
#include "AutoTest.h"
|
|
|
|
|
|
|
|
class PRS1Tests : public QObject
|
|
|
|
{
|
2019-05-05 01:53:02 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2019-05-03 01:51:56 +00:00
|
|
|
private slots:
|
2019-05-05 01:53:02 +00:00
|
|
|
void initTestCase();
|
2019-05-27 14:05:16 +00:00
|
|
|
void testMachineSupport();
|
2019-05-18 23:20:36 +00:00
|
|
|
void testChunksToYaml();
|
2019-05-05 01:53:02 +00:00
|
|
|
void testSessionsToYaml();
|
|
|
|
// void test2();
|
|
|
|
void cleanupTestCase();
|
2019-05-03 01:51:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
DECLARE_TEST(PRS1Tests)
|
|
|
|
|
|
|
|
#endif // PRS1TESTS_H
|
|
|
|
|