mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
fe074ccad1
The code assumes that prefs.cloud_base_url is non NULL. Allowing that to be NULL makes no sense during normal operation of the app. Yet, most of the tests don't initialize the prefs at all. Making things worse, if we do correctly initialize the prefs (so as to reasonably approximate the behavior when running the app), things break because some of the reference outputs assume that the prefs are unset. This deserves fixing. For now, simply make sure that cloud_base_url is set for all the tests that try to parse files. Additionally, the semantics how cloud_base_url is saved to disk have changed, so adjust the test for those prefs accordingly. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
16 lines
246 B
C++
16 lines
246 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 init();
|
|
void testProfileExport();
|
|
void testProfileExportVPMB();
|
|
};
|
|
|
|
#endif
|