mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
21 lines
257 B
C
21 lines
257 B
C
|
#ifndef PRS1TESTS_H
|
||
|
#define PRS1TESTS_H
|
||
|
|
||
|
#include "AutoTest.h"
|
||
|
|
||
|
class PRS1Tests : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private slots:
|
||
|
void initTestCase();
|
||
|
void test1();
|
||
|
// void test2();
|
||
|
void cleanupTestCase();
|
||
|
};
|
||
|
|
||
|
DECLARE_TEST(PRS1Tests)
|
||
|
|
||
|
#endif // PRS1TESTS_H
|
||
|
|