summaryrefslogtreecommitdiffstats
path: root/tests/testdivesiteduplication.cpp
blob: 4b770d311c9cd22492f2c585cb7fb2fd3fccb4dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: GPL-2.0
#include "testdivesiteduplication.h"
#include "core/dive.h"
#include "core/divesite.h"

void TestDiveSiteDuplication::testReadV2()
{
	QCOMPARE(parse_file(SUBSURFACE_TEST_DATA "/dives/TwoTimesTwo.ssrf", &dive_table, &trip_table, &dive_site_table), 0);
	QCOMPARE(dive_site_table.nr, 2);
}

QTEST_GUILESS_MAIN(TestDiveSiteDuplication)