mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
d815e0c947
To enable undo of divelog-importing it is crucial that parse_file() can parse into arbitrary dive tables. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
10 lines
204 B
C++
10 lines
204 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "testprofile.h"
|
|
#include "core/dive.h"
|
|
|
|
void TestProfile::testRedCeiling()
|
|
{
|
|
parse_file("../dives/deep.xml", &dive_table);
|
|
}
|
|
|
|
QTEST_GUILESS_MAIN(TestProfile)
|