subsurface/tests/testprofile.h
Robert C. Helling b3270222fd Add test for profile data
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>
2020-05-04 13:39:18 -07:00

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