mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
21e8b1e363
A few more fixes for things that broke in commit 7be962bfc2
("Move
subsurface-core to core and qt-mobile to mobile-widgets").
[Dirk Hohndel: slightly edited and overlap with Linus' patch removed]
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
11 lines
277 B
C++
11 lines
277 B
C++
#include "testdivesiteduplication.h"
|
|
#include "core/dive.h"
|
|
#include "core/divesite.h"
|
|
|
|
void TestDiveSiteDuplication::testReadV2()
|
|
{
|
|
QCOMPARE(parse_file(SUBSURFACE_SOURCE "/dives/TwoTimesTwo.ssrf"), 0);
|
|
QCOMPARE(dive_site_table.nr, 2);
|
|
}
|
|
|
|
QTEST_MAIN(TestDiveSiteDuplication)
|