mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +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
|
|
|