OSCAR-code/oscar/tests/versiontests.h
2020-01-15 17:00:21 -05:00

19 lines
425 B
C++

/* Version Unit Tests
*
* Copyright (c) 2020 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)