mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
19 lines
430 B
C++
19 lines
430 B
C++
/* Version Unit Tests
|
|
*
|
|
* Copyright (c) 2020-2022 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. */
|
|
|
|
#include "tests/AutoTest.h"
|
|
|
|
class VersionTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void testCurrentVersion();
|
|
void testPrecedence();
|
|
};
|
|
DECLARE_TEST(VersionTests)
|