mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
b3270222fd
There was a TestProfile but that was a stub that did not test anything. We have an export function that serialises the profile data (including lots of derived data like deco information and cylinder pressure interpolation). So here is now a simple tests that can detect regressions in the profle. Signed-off-by: Robert C. Helling <helling@atdotde.de>
14 lines
201 B
C++
14 lines
201 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#ifndef TESTPROFILE_H
|
|
#define TESTPROFILE_H
|
|
|
|
#include <QtTest>
|
|
|
|
class TestProfile : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void testProfileExport();
|
|
};
|
|
|
|
#endif
|