blob: f70da562156e1a216227ebff8eb8635afae2de70 (
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), 0);
QCOMPARE(dive_site_table.nr, 2);
}
QTEST_GUILESS_MAIN(TestDiveSiteDuplication)
|