mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
1b37e0f1a4
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
11 lines
267 B
C++
11 lines
267 B
C++
#include "testdivesiteduplication.h"
|
|
#include "dive.h"
|
|
#include "divesite.h"
|
|
|
|
void TestDiveSiteDuplication::testReadV2()
|
|
{
|
|
QCOMPARE(parse_file(SUBSURFACE_SOURCE "/dives/TwoTimesTwo.ssrf"), 0);
|
|
QCOMPARE(dive_site_table.nr, 2);
|
|
}
|
|
|
|
QTEST_MAIN(TestDiveSiteDuplication)
|