subsurface/tests/testprofile.cpp
Berthold Stoeger d815e0c947 Parse: pass dive_table argument to parse_file()
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>
2018-08-23 10:17:12 -07:00

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)